记得上下班打卡 | git大法好,push需谨慎

Commit 48361056 authored by 胡佳晨's avatar 胡佳晨

演出列表修改

parent 673dcef3
......@@ -285,11 +285,11 @@ public class MongoMerchantUtils {
criteria = criteria.and("title").regex(".*" + performancePartnerListParam.getTitle() + ".*");
}
if (performancePartnerListParam.getStatus() != null) {
if (performancePartnerListParam.getStatus() == 0) {
criteria = criteria.and("appStatus").is(0);
if (performancePartnerListParam.getAuditStatus() == 0) {
criteria = criteria.and("auditStatus").is(0);
} else {
if (performancePartnerListParam.getStatus() != -2) {
criteria = criteria.and("appStatus").is(performancePartnerListParam.getStatus());
if (performancePartnerListParam.getAuditStatus() != -2) {
criteria = criteria.and("auditStatus").is(performancePartnerListParam.getAuditStatus());
}
if (performancePartnerListParam.getTimeStart() != null && !performancePartnerListParam.getTimeStart().isEmpty()) {
criteria = criteria.and("timeStart").gte(performancePartnerListParam.getTimeStart()).lte(performancePartnerListParam.getTimeEnd());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment