Compare commits

..

No commits in common. "7f584f958c486babfb9a2a54b0276ccfe2190447" and "6959ea669934fd9c0da7d9909521342eec537bab" have entirely different histories.

3 changed files with 1 additions and 6 deletions

View File

@ -45,7 +45,7 @@ public class HealthPersonInfoController extends BaseController {
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo list(HealthPersonInfo healthPersonInfo) { public TableDataInfo list(HealthPersonInfo healthPersonInfo) {
startPage(); startPage();
System.out.println(healthPersonInfo.getDeptIds()); System.out.println(healthPersonInfo.getPlaceIds());
List<HealthPersonInfo> list = healthPersonInfoService.selectHealthPersonInfoList(healthPersonInfo); List<HealthPersonInfo> list = healthPersonInfoService.selectHealthPersonInfoList(healthPersonInfo);
return getDataTable(list); return getDataTable(list);
} }

View File

@ -174,6 +174,4 @@ public class HealthPersonInfo extends BaseEntity {
private Date updateTime; private Date updateTime;
private String doctorAdvices; private String doctorAdvices;
private String placeIds; private String placeIds;
private String deptIds;
} }

View File

@ -82,9 +82,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="doctorAdvices != null and doctorAdvices != ''"> <if test="doctorAdvices != null and doctorAdvices != ''">
and b.doctor_advice in (${doctorAdvices}) and b.doctor_advice in (${doctorAdvices})
</if> </if>
<if test="deptIds != null and deptIds != ''">
and a.dept_id in (${deptIds})
</if>
group by a.user_id, group by a.user_id,
a.nick_name, a.nick_name,
a.dept_id, a.dept_id,