Commit 20725ceb authored by 韩桐桐's avatar 韩桐桐

Merge remote-tracking branch 'origin/develop_tzs_register' into develop_tzs_register

# Conflicts: # amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-biz/src/main/java/com/yeejoin/amos/boot/module/common/biz/service/impl/FeedbackSuggestionsServiceImpl.java
parents 4cd1700c c39d422b
...@@ -114,7 +114,6 @@ public class FeedbackSuggestionsServiceImpl extends BaseService<FeedbackSuggesti ...@@ -114,7 +114,6 @@ public class FeedbackSuggestionsServiceImpl extends BaseService<FeedbackSuggesti
if (!companyType.equals("监管机构")) { if (!companyType.equals("监管机构")) {
result = this.lambdaQuery() result = this.lambdaQuery()
.eq(FeedbackSuggestions::getCompanyCode, company.getCompanyCode()) .eq(FeedbackSuggestions::getCompanyCode, company.getCompanyCode())
.eq(FeedbackSuggestions::getIsDelete, Boolean.FALSE)
.eq(!ValidationUtil.isEmpty(status), FeedbackSuggestions::getStatus, status) .eq(!ValidationUtil.isEmpty(status), FeedbackSuggestions::getStatus, status)
.orderByDesc(FeedbackSuggestions::getCreateDate) .orderByDesc(FeedbackSuggestions::getCreateDate)
.page(page); .page(page);
...@@ -123,7 +122,6 @@ public class FeedbackSuggestionsServiceImpl extends BaseService<FeedbackSuggesti ...@@ -123,7 +122,6 @@ public class FeedbackSuggestionsServiceImpl extends BaseService<FeedbackSuggesti
if (companyType.equals("监管机构")) { if (companyType.equals("监管机构")) {
result = this.lambdaQuery() result = this.lambdaQuery()
.likeRight(FeedbackSuggestions::getSuperviseOrgCode, company.getOrgCode()) .likeRight(FeedbackSuggestions::getSuperviseOrgCode, company.getOrgCode())
.eq(FeedbackSuggestions::getIsDelete, Boolean.FALSE)
.eq(!ValidationUtil.isEmpty(status), FeedbackSuggestions::getStatus, status) .eq(!ValidationUtil.isEmpty(status), FeedbackSuggestions::getStatus, status)
.orderByDesc(FeedbackSuggestions::getCreateDate) .orderByDesc(FeedbackSuggestions::getCreateDate)
.page(page); .page(page);
......
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