|
@@ -37,6 +37,7 @@ import com.diagbot.vo.RemoveConceptInfoVO;
|
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
+import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
@@ -123,6 +124,7 @@ public class ConceptController {
|
|
notes = "conceptIds: 术语Id列表")
|
|
notes = "conceptIds: 术语Id列表")
|
|
@PostMapping("/getConceptMap")
|
|
@PostMapping("/getConceptMap")
|
|
@SysLogger("getConceptMap")
|
|
@SysLogger("getConceptMap")
|
|
|
|
+ @ApiIgnore
|
|
public RespDTO<Map<String, Long>> getConceptMap(@RequestBody ConceptSearchVO conceptSearchVO) {
|
|
public RespDTO<Map<String, Long>> getConceptMap(@RequestBody ConceptSearchVO conceptSearchVO) {
|
|
return RespDTO.onSuc(conceptFacade.getConceptMap(conceptSearchVO));
|
|
return RespDTO.onSuc(conceptFacade.getConceptMap(conceptSearchVO));
|
|
}
|
|
}
|
|
@@ -137,6 +139,7 @@ public class ConceptController {
|
|
notes = "type: 1:科室、2:辅检、3:慢病")
|
|
notes = "type: 1:科室、2:辅检、3:慢病")
|
|
@PostMapping("/getConceptListByType")
|
|
@PostMapping("/getConceptListByType")
|
|
@SysLogger("getConceptListByType")
|
|
@SysLogger("getConceptListByType")
|
|
|
|
+ @ApiIgnore
|
|
public RespDTO<List<ConceptBaseDTO>> getConceptListByType(@RequestBody ConceptTypeVO conceptTypeVO) {
|
|
public RespDTO<List<ConceptBaseDTO>> getConceptListByType(@RequestBody ConceptTypeVO conceptTypeVO) {
|
|
return RespDTO.onSuc(conceptFacade.getConceptListByType(conceptTypeVO));
|
|
return RespDTO.onSuc(conceptFacade.getConceptListByType(conceptTypeVO));
|
|
}
|
|
}
|