Merge branch 'feature/REQ-3282-zhh' into 'feature/REQ-3282'
Feature/req 3282 zhh See merge request universal/infrastructure/backend/orgmanax!21
This commit is contained in:
commit
1edb4ed687
@ -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 = "legalPhone", operator = Operator.IN)
|
||||
private Set<String> legalPhones;
|
||||
@CriteriaField(field = "identityType", operator = Operator.EQ)
|
||||
private Integer identityType;
|
||||
/**
|
||||
|
||||
@ -192,5 +192,9 @@ public class UpdateUnitReq implements Serializable {
|
||||
* 市名称
|
||||
*/
|
||||
private String cityName;
|
||||
/**
|
||||
* 历史平台班组的同步数据,0:还未同步,1:同步完成
|
||||
*/
|
||||
private Integer syncState;
|
||||
|
||||
}
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
package cn.axzo.orgmanax.infra.dao.unit.entity;
|
||||
|
||||
import cn.axzo.trade.datasecurity.core.annotation.CryptField;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
@ -99,6 +100,7 @@ public class OrganizationalUnit implements Serializable {
|
||||
/**
|
||||
* 法人代表身份证
|
||||
*/
|
||||
@CryptField
|
||||
private String legalIdCard;
|
||||
|
||||
/**
|
||||
|
||||
@ -108,6 +108,8 @@ public interface UnitQueryRepository {
|
||||
private Set<Long> identityIds;
|
||||
@CriteriaField(field = "legalIdCard", operator = Operator.IN)
|
||||
private Set<String> legalIdCards;
|
||||
@CriteriaField(field = "legalPhone", operator = Operator.IN)
|
||||
private Set<String> legalPhones;
|
||||
@CriteriaField(field = "identityType", operator = Operator.EQ)
|
||||
private Integer identityType;
|
||||
}
|
||||
|
||||
@ -190,5 +190,8 @@ public class UpdateUnitReq {
|
||||
* 市名称
|
||||
*/
|
||||
private String cityName;
|
||||
|
||||
/**
|
||||
* 历史平台班组的同步数据,0:还未同步,1:同步完成
|
||||
*/
|
||||
private Integer syncState;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user