jsk 健康

This commit is contained in:
skjia 2025-06-05 13:45:26 +08:00
parent d0ba4aaf20
commit 6bceddc8de
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -173,4 +173,5 @@ public class HealthPersonInfo extends BaseEntity {
@ApiModelProperty("更新时间")
private Date updateTime;
private String doctorAdvices;
private String placeIds;
}