Browse Source

代码修改

LAPTOP-KB9HII50\70708 8 months ago
parent
commit
727af1f370

+ 1 - 1
svr/svr-visit-behind/src/main/java/com/yihu/jw/hospital/module/common/LabelController.java

@ -72,7 +72,7 @@ public class LabelController extends EnvelopRestEndpoint {
                                       @RequestParam(value = "patient", required = false) String patient,
                                       @ApiParam(name = "doctor", value = "医生id")
                                       @RequestParam(value = "doctor", required = false) String doctor,
                                       @ApiParam(name = "labelType", value = "标签类型")
                                       @ApiParam(name = "labelType", value = "标签类型 1健康情况 2疾病类型 3专病类型 4自定义标签")
                                       @RequestParam(value = "labelType", required = false) String labelType,
                                       @ApiParam(name = "page", value = "第几页")
                                       @RequestParam(value = "page", required = true) Integer page,

+ 1 - 1
svr/svr-visit-behind/src/main/java/com/yihu/jw/hospital/module/health/service/scheme/DoctorSchemeService.java

@ -210,7 +210,7 @@ public class DoctorSchemeService {
        json.put("diseaseList",diseaseList);//慢病类型
        String zbSql = "SELECT distinct disease_name zbName from wlyy_patient_rehabilitation_plan WHERE patient = '"+patient+"' and status='1' ";
        List<Map<String,Object>> zbList = jdbcTemplate.queryForList(labelSql);
        List<Map<String,Object>> zbList = jdbcTemplate.queryForList(zbSql);
        json.put("zbList",zbList);//专病类型
        String sql5 = "SELECT DISTINCT doctor_name from wlyy_outpatient where patient='"+patient+"' order by create_time desc LIMIT 6";