|
@@ -46,14 +46,14 @@ import springfox.documentation.annotations.ApiIgnore;
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping("/inquiryInfo")
|
|
|
-@Api(value = "问诊记录API", tags = { "知识库标准化-问诊记录API" })
|
|
|
+@Api(value = "问诊记录API", tags = { "ICSS三期/知识库标准化-问诊记录API" })
|
|
|
@SuppressWarnings("unchecked")
|
|
|
public class InquiryInfoController {
|
|
|
|
|
|
@Autowired
|
|
|
private InquiryInfoFacade inquiryInfoFacade;
|
|
|
|
|
|
- @ApiOperation(value = "知识库标准化-问诊记录保存[by:rengb]")
|
|
|
+ @ApiOperation(value = "ICSS三期/知识库标准化-问诊记录保存[by:rengb]")
|
|
|
@PostMapping("/saveInquiry")
|
|
|
@SysLogger("saveInquiry")
|
|
|
@Transactional
|
|
@@ -82,7 +82,7 @@ public class InquiryInfoController {
|
|
|
return RespDTO.onSuc(inquiryInfoFacade.hisInquirys(hisInquirysVO));
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "急诊-历史病历列表[by:rengb]")
|
|
|
+ @ApiOperation(value = "ICSS三期-急诊-历史病历列表[by:rengb]")
|
|
|
@PostMapping("/hisInquirysForJz")
|
|
|
@SysLogger("hisInquirysForJz")
|
|
|
public RespDTO<List<HisInquirysForJzDTO>> hisInquirysForJz(@Valid @RequestBody HisInquirysForJzVO hisInquirysForJzVO) {
|
|
@@ -118,14 +118,14 @@ public class InquiryInfoController {
|
|
|
return RespDTO.onSuc(inquiryInfoFacade.getEvaluationScales(getEvaluationScalesVO));
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "急诊-添加二次诊断[by:rengb]")
|
|
|
+ @ApiOperation(value = "ICSS三期-急诊-添加二次诊断[by:rengb]")
|
|
|
@PostMapping("/addDiagnoseSecond")
|
|
|
@SysLogger("addDiagnoseSecond")
|
|
|
public RespDTO<Boolean> addDiagnoseSecond(@Valid @RequestBody AddDiagnoseSecondVO addDiagnoseSecondVO) {
|
|
|
return RespDTO.onSuc(inquiryInfoFacade.addDiagnoseSecond(addDiagnoseSecondVO));
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "急诊-导出病历[by:rengb]")
|
|
|
+ @ApiOperation(value = "ICSS三期-急诊-导出病历[by:rengb]")
|
|
|
@PostMapping("/exportInquirys")
|
|
|
public void exportInquirys(HttpServletResponse response,@Valid @RequestBody ExportInquirysVO exportInquirysVO){
|
|
|
inquiryInfoFacade.exportInquirys(response,exportInquirysVO);
|