|
|
|
@ -70,6 +70,7 @@ public class CaseController {
|
|
|
|
|
|
|
|
|
|
@PostMapping("/insertComprehensivePlanCase")
|
|
|
|
|
@ApiOperation("老师端或管理员/新增编辑综合规划案例")
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
private ResultEntity<HttpStatus> insertComprehensivePlanCase(@ApiParam("主表caseInfo必传") @RequestBody StuCaseDto stuCaseDto) {
|
|
|
|
|
return caseService.insertComprehensivePlanCase(stuCaseDto);
|
|
|
|
|
}
|
|
|
|
@ -77,7 +78,6 @@ public class CaseController {
|
|
|
|
|
|
|
|
|
|
@PostMapping("/getCaseFinance")
|
|
|
|
|
@ApiOperation("老师端/管理员端/查询财务分析四张表")
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
private ResultEntity<CaseFinanceDto> getCaseFinance(@RequestParam String caseId) {
|
|
|
|
|
CaseFinanceDto caseFinanceDto = new CaseFinanceDto();
|
|
|
|
|
|
|
|
|
@ -118,7 +118,6 @@ public class CaseController {
|
|
|
|
|
|
|
|
|
|
@PostMapping("/getInsurancePro")
|
|
|
|
|
@ApiOperation("查询保险规划产品名称")
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
private ResultEntity<List<Map<String, String>>> getInsurancePro(@RequestParam String type) {
|
|
|
|
|
return new ResultEntity<>(insuranceProMapper.getInsurancePro(type));
|
|
|
|
|
}
|
|
|
|
@ -168,7 +167,6 @@ public class CaseController {
|
|
|
|
|
|
|
|
|
|
@PostMapping("/ZHGHType")
|
|
|
|
|
@ApiOperation("综合规划下方展示类型")
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
private ResultEntity<String> ZHGHType(@RequestParam String caseID) {
|
|
|
|
|
ComCaseExample example = new ComCaseExample();
|
|
|
|
|
example.createCriteria().andCaseidEqualTo(caseID);
|
|
|
|
@ -179,7 +177,7 @@ public class CaseController {
|
|
|
|
|
return new ResultEntity<>(comCases.get(0).getManageMoneyMattersType());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
|
|
|
|
|
@PostMapping("/getExamPoint")
|
|
|
|
|
@ApiOperation("展示考核点信息/老师端/学生实验实训")
|
|
|
|
|
private ResultEntity<Object> getExamPoint(@RequestParam String caseID,
|
|
|
|
|