|
|
@@ -208,11 +208,11 @@ public class WorkContactEmployeeServiceImpl extends ServiceImpl<WorkContactEmplo
|
|
|
obj.le("c.deleted_at", endDeletedAt);
|
|
|
}
|
|
|
|
|
|
- if (startCreatedAt != null && startCreatedAt.isEmpty()) {
|
|
|
+ if (startCreatedAt != null && !startCreatedAt.isEmpty()) {
|
|
|
obj.ge("c.created_at", startCreatedAt);
|
|
|
}
|
|
|
|
|
|
- if (endCreatedAt != null && endCreatedAt.isEmpty()) {
|
|
|
+ if (endCreatedAt != null && !endCreatedAt.isEmpty()) {
|
|
|
obj.le("c.created_at", endCreatedAt);
|
|
|
}
|
|
|
if (corpId != null) {
|