后台新增了审核时间
This commit is contained in:
parent
405fe91c65
commit
29367a8aaf
@ -9,6 +9,9 @@ import lombok.Data;
|
||||
import net.lab1024.sa.common.common.swagger.ApiModelPropertyEnum;
|
||||
import net.lab1024.sa.common.common.validator.enumeration.CheckEnum;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 病历表 分页查询表单
|
||||
*
|
||||
@ -35,6 +38,10 @@ public class CaseplatformCaseQueryForm extends PageParam{
|
||||
@CheckEnum(value = CaseStatusEnum.class, message = "0待审核 1审核通过 2审核不通过 错误")
|
||||
private Integer status;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "审核时间")
|
||||
private List<LocalDateTime> examineTime;
|
||||
|
||||
@ApiModelProperty(value = "省份")
|
||||
private Long provId;
|
||||
|
||||
|
||||
@ -56,6 +56,10 @@
|
||||
<if test="queryForm.hospitalUuid != null and queryForm.hospitalUuid != ''">
|
||||
AND t_caseplatform_expert.hospital_uuid =#{queryForm.hospitalUuid}
|
||||
</if>
|
||||
<!-- 审核时间区间 -->
|
||||
<if test="queryForm.examineTime != null and queryForm.examineTime.size == 2">
|
||||
AND t_caseplatform_case.examine_time BETWEEN #{queryForm.examineTime[0]} AND #{queryForm.examineTime[1]}
|
||||
</if>
|
||||
</where>
|
||||
order by t_caseplatform_case.create_time desc
|
||||
</select>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user