| | |
| | | private String patName; |
| | | |
| | | @Schema(description = "检查类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋艿") |
| | | @NotEmpty(message = "检查类型不能为空") |
| | | private Integer checkType; |
| | | |
| | | @Schema(description = "装机时间") |
| | |
| | | @Schema(description = "患者名称", example = "芋艿") |
| | | private String patName; |
| | | |
| | | @Schema(description = "检查类型", example = "100") |
| | | private Integer checkType; |
| | | |
| | | @Schema(description = "状态") |
| | | private List<Integer> stateList; |
| | | } |
| | |
| | | " <if test=\"patId != null and patId != ''\"> " + |
| | | " and pat_id = #{patId} " + |
| | | " </if> " + |
| | | " <if test=\"checkType != null and checkType != ''\"> " + |
| | | " and check_type = #{checkType} " + |
| | | " </if> " + |
| | | "</where> " + |
| | | "order by create_time desc " + |
| | | "limit 1 " + |