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