feat(REQ-3282): 增加profile防腐层调用相关
This commit is contained in:
parent
17f8efb7d7
commit
6bf02e55d8
@ -2,10 +2,24 @@ package cn.axzo.orgmanax.infra.client.apollo.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* @author zhanghongbo
|
||||
* @date 2024/12/11
|
||||
*/
|
||||
@Data
|
||||
public class ApolloBatchUnCompleteWorkerReq {
|
||||
|
||||
/**
|
||||
* 派发组织节点id
|
||||
*/
|
||||
@NotNull(message = "节点ID不能为空")
|
||||
private Long orgNodeId;
|
||||
|
||||
/**
|
||||
* 工人personId
|
||||
*/
|
||||
@NotNull(message = "工人personId不能为空")
|
||||
private Long workerPersonId;
|
||||
}
|
||||
|
||||
@ -1,17 +1,25 @@
|
||||
package cn.axzo.orgmanax.infra.client.profile.dto;
|
||||
|
||||
import cn.axzo.orgmanax.infra.client.profile.dto.model.AbstractProfileUpdateDto;
|
||||
import cn.axzo.orgmanax.infra.client.profile.dto.model.PersonEducationUpdateDto;
|
||||
import cn.axzo.orgmanax.infra.client.profile.enums.SexType;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author zhanghongbo
|
||||
* @date 2024/12/11
|
||||
* 项目名称:profiles
|
||||
* 类 名 称:PersonUpdateDto
|
||||
* 类 描 述:TODO
|
||||
* 创建时间:2022/5/9 21:54
|
||||
* 创 建 人:xuyaozuo
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class ProfileAddOperatorReq {
|
||||
@Accessors(chain = true)
|
||||
public class ProfileAddOperatorReq extends AbstractProfileUpdateDto {
|
||||
private Long id; //w
|
||||
|
||||
private String phone; //w
|
||||
|
||||
Loading…
Reference in New Issue
Block a user