manage:增加字段

dev_2.0.0
xueqingkun 2 years ago
parent 4e6340ac06
commit 1aec63ca88

@ -49,7 +49,7 @@ public class DiseaseQuestionManageController {
} }
@ApiOperation("分页查询问题库列表(排除已选择)") @ApiOperation("分页查询问题库列表(排除已选择的问题)")
@GetMapping("/queryQaLibPageList") @GetMapping("/queryQaLibPageList")
public Page<AskQuestionLibraryResVo> queryQaLibPageList(@RequestParam(defaultValue = "1") Integer pageNum, public Page<AskQuestionLibraryResVo> queryQaLibPageList(@RequestParam(defaultValue = "1") Integer pageNum,
@RequestParam(defaultValue = "10") Integer pageSize, @RequestParam(defaultValue = "10") Integer pageSize,

@ -22,6 +22,9 @@ public class DiseasePhysicalResVo extends DiseasePhysical {
@ApiModelProperty("工具父级id") @ApiModelProperty("工具父级id")
private String toolParentId; private String toolParentId;
@ApiModelProperty("身体部位名称")
private String locationName;
@ApiModelProperty("工具id路径") @ApiModelProperty("工具id路径")
private List<String> toolIdPath; private List<String> toolIdPath;

@ -48,8 +48,9 @@
dp.basis_identification_flag as basisIdentificationFlag, dp.basis_identification_flag as basisIdentificationFlag,
dp.full_check_flag as fullCheckFlag, dp.full_check_flag as fullCheckFlag,
dp.diagnosis_assessment_flag as diagnosisAssessmentFlag, dp.diagnosis_assessment_flag as diagnosisAssessmentFlag,
dp.location_diagnosis_flag as locationDiagnosisFlag,
dp.expected_diagnosis_result as expectedDiagnosisResult, dp.expected_diagnosis_result as expectedDiagnosisResult,
dp.require_check_flag as asrequireCheckFlag, dp.require_check_flag as requireCheckFlag,
dp.result as result, dp.result as result,
dp.trait as trait dp.trait as trait
from vp_disease_physical dp from vp_disease_physical dp

Loading…
Cancel
Save