feat:feature-REQ/2129 增加查询条件
This commit is contained in:
parent
980ab93693
commit
e32bdd56c7
@ -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;
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user