Compare commits
2
Commits
fda24ef418
...
0fed763499
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0fed763499 | ||
|
|
786b053703 |
+2
-2
@@ -165,7 +165,7 @@ public class AsyncExportService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (ObjectUtils.isNotEmpty(dto.getStartDate()) && ObjectUtils.isNotEmpty(dto.getEndDate())) {
|
if (ObjectUtils.isNotEmpty(dto.getStartDate()) && ObjectUtils.isNotEmpty(dto.getEndDate())) {
|
||||||
sessionWrapper.between(ConSession::getCreateTime, dto.getStartDate(), dto.getEndDate());
|
sessionWrapper.between(ConSession::getCreateTime, dto.getStartDate(), dto.getEndDate() + " 23:59:59");
|
||||||
}
|
}
|
||||||
|
|
||||||
//医院筛选
|
//医院筛选
|
||||||
@@ -395,7 +395,7 @@ public class AsyncExportService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (ObjectUtils.isNotEmpty(dto.getStartDate()) && ObjectUtils.isNotEmpty(dto.getEndDate())) {
|
if (ObjectUtils.isNotEmpty(dto.getStartDate()) && ObjectUtils.isNotEmpty(dto.getEndDate())) {
|
||||||
sessionWrapper.between(ConSession::getCreateTime, dto.getStartDate(), dto.getEndDate());
|
sessionWrapper.between(ConSession::getCreateTime, dto.getStartDate(), dto.getEndDate() + " 23:59:59");
|
||||||
}
|
}
|
||||||
|
|
||||||
// 人员筛选
|
// 人员筛选
|
||||||
|
|||||||
+1
-1
@@ -21,7 +21,7 @@
|
|||||||
AND cr.address LIKE CONCAT('%', #{conResource.province}, '%')
|
AND cr.address LIKE CONCAT('%', #{conResource.province}, '%')
|
||||||
</if>
|
</if>
|
||||||
<if test="conResource.level != null and conResource.level != ''">
|
<if test="conResource.level != null and conResource.level != ''">
|
||||||
AND cr."level" = #{conResource.level}
|
AND cr."LEVEL" = #{conResource.level}
|
||||||
</if>
|
</if>
|
||||||
<if test="conResource.status != null and conResource.status != ''">
|
<if test="conResource.status != null and conResource.status != ''">
|
||||||
AND cr.status = #{conResource.status}
|
AND cr.status = #{conResource.status}
|
||||||
|
|||||||
Reference in New Issue
Block a user