feat(REQ-3282): 单位列表查询加上identityType
This commit is contained in:
parent
faf3ee9636
commit
4959321908
@ -50,6 +50,8 @@ public class ListUnitReq extends PageReqV2 {
|
||||
private Set<Long> identityIds;
|
||||
@CriteriaField(field = "legalIdCard", operator = Operator.IN)
|
||||
private Set<String> legalIdCards;
|
||||
@CriteriaField(field = "identityType", operator = Operator.EQ)
|
||||
private Integer identityType;
|
||||
/**
|
||||
* TODO: 待实现
|
||||
* 查询返回数据包含,逻辑删除数据,即查询未删除和已删除的数据。
|
||||
|
||||
@ -108,6 +108,8 @@ public interface UnitQueryRepository {
|
||||
private Set<Long> identityIds;
|
||||
@CriteriaField(field = "legalIdCard", operator = Operator.IN)
|
||||
private Set<String> legalIdCards;
|
||||
@CriteriaField(field = "identityType", operator = Operator.EQ)
|
||||
private Integer identityType;
|
||||
}
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user