forked from luyan/epmet-cloud-lingshan
1 changed files with 36 additions and 0 deletions
@ -0,0 +1,36 @@ |
|||||
|
package com.epmet.dto.form.yantai; |
||||
|
|
||||
|
import com.epmet.commons.tools.validator.group.AddGroup; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
|
||||
|
/** |
||||
|
* @Description 工作端新增完用户后,需要调用此接口,更新data_sync_user_data |
||||
|
* @Author yzm |
||||
|
* @Date 2022/10/18 13:54 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class YtSyncStaffIdFormDTO { |
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
@NotBlank(message = "customerId不能为空",groups = AddGroup.class) |
||||
|
private String customerId; |
||||
|
/** |
||||
|
* 人员ID |
||||
|
*/ |
||||
|
@NotBlank(message = "staffId不能为空",groups = AddGroup.class) |
||||
|
private String staffId; |
||||
|
|
||||
|
@NotBlank(message = "name不能为空",groups = AddGroup.class) |
||||
|
private String name; |
||||
|
|
||||
|
@NotBlank(message = "mobile不能为空",groups = AddGroup.class) |
||||
|
private String mobile; |
||||
|
|
||||
|
@NotBlank(message = "当前操作人id不能为空",groups = AddGroup.class) |
||||
|
private String operUserId; |
||||
|
|
||||
|
} |
||||
|
|
Loading…
Reference in new issue