feat:feature-REQ/2129 增加查询条件

This commit is contained in:
lilong 2024-03-26 17:58:33 +08:00
parent 980ab93693
commit e32bdd56c7
2 changed files with 6 additions and 6 deletions

View File

@ -40,9 +40,9 @@ public interface MessageHistoryApi {
private Set<String> toAccount;
private String appType;
private Set<String> appTypes;
private String status;
private Set<String> statues;
private boolean needReceiveOuInfo;

View File

@ -48,11 +48,11 @@ public interface MessageHistoryService extends IService<MessageHistory> {
@CriteriaField(field = "toAccount", operator = Operator.IN)
private Set<String> toAccount;
@CriteriaField(field = "appType", operator = Operator.EQ)
private String appType;
@CriteriaField(field = "appType", operator = Operator.IN)
private Set<String> appTypes;
@CriteriaField(field = "status", operator = Operator.EQ)
private String status;
@CriteriaField(field = "status", operator = Operator.IN)
private Set<String> statues;
@CriteriaField(ignore = true)
private boolean needReceiveOuInfo;