新增投资规划相关记录表

master
xiaoCJ
parent 5e262aa656
commit 00e820b247

@ -1,8 +1,6 @@
package com.sztzjy.money_management.controller; package com.sztzjy.money_management.controller;
import cn.hutool.core.util.IdUtil; import cn.hutool.core.util.IdUtil;
import cn.hutool.json.JSONObject;
import com.alibaba.fastjson.JSON;
import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo; import com.github.pagehelper.PageInfo;
import com.nimbusds.jose.shaded.gson.Gson; import com.nimbusds.jose.shaded.gson.Gson;
@ -19,9 +17,7 @@ import com.sztzjy.money_management.util.excel.FilePortUtil;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam; import io.swagger.annotations.ApiParam;
import io.swagger.models.auth.In;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.apache.poi.ss.formula.functions.T;
import org.python.core.AstList; import org.python.core.AstList;
import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
@ -206,7 +202,6 @@ public class GradeController {
} }
//学生端 客户案例成绩展示 //学生端 客户案例成绩展示
@AnonymousAccess @AnonymousAccess
@ApiOperation("学生端-成绩中心-客户案例成绩展示") @ApiOperation("学生端-成绩中心-客户案例成绩展示")
@ -412,7 +407,6 @@ public class GradeController {
} }
//教师端 成绩总览导出 //教师端 成绩总览导出
@AnonymousAccess @AnonymousAccess
@GetMapping("/exportSummaryOfResults") @GetMapping("/exportSummaryOfResults")
@ -849,8 +843,9 @@ public class GradeController {
SynthesisPlanClientExample synthesisPlanClientExample = new SynthesisPlanClientExample(); SynthesisPlanClientExample synthesisPlanClientExample = new SynthesisPlanClientExample();
synthesisPlanClientExample.createCriteria().andUseridEqualTo(userId).andCaseidEqualTo(caseId); synthesisPlanClientExample.createCriteria().andUseridEqualTo(userId).andCaseidEqualTo(caseId);
List<SynthesisPlanClient> synthesisPlanClients = synthesisPlanClientMapper.selectByExample(synthesisPlanClientExample); List<SynthesisPlanClient> synthesisPlanClients = synthesisPlanClientMapper.selectByExample(synthesisPlanClientExample);
synthesisPlanClients.get(0).setSubmitStatus("已审核"); SynthesisPlanClient synthesisPlanClient = synthesisPlanClients.get(0);
synthesisPlanClient.setSubmitStatus("已审核");
synthesisPlanClientMapper.updateByPrimaryKeySelective(synthesisPlanClient);
//设置综合规划成绩表 ***** //设置综合规划成绩表 *****
return new ResultEntity<>(HttpStatus.OK, "更新评分成功"); return new ResultEntity<>(HttpStatus.OK, "更新评分成功");
@ -1408,8 +1403,6 @@ public class GradeController {
} }
//教师端 理论考核查询 //教师端 理论考核查询
@AnonymousAccess @AnonymousAccess
@ApiOperation("教师端-成绩中心-理论考核查询") @ApiOperation("教师端-成绩中心-理论考核查询")

Loading…
Cancel
Save