|
|
|
|
|
|
|
|
import lombok.experimental.Accessors; |
|
|
import lombok.experimental.Accessors; |
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotBlank; |
|
|
import javax.validation.constraints.NotBlank; |
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
@Getter |
|
|
@Getter |
|
|
@Setter |
|
|
@Setter |
|
|
|
|
|
|
|
|
private String agencyName;// 发行渠道 |
|
|
private String agencyName;// 发行渠道 |
|
|
@NotBlank(message = "员工身份标识不能为空") |
|
|
@NotBlank(message = "员工身份标识不能为空") |
|
|
private String identityType;// 员工身份标识 |
|
|
private String identityType;// 员工身份标识 |
|
|
|
|
|
private List<String> serviceHallIds;// 网点编号 |
|
|
|
|
|
private List<String> agencyIds;// 发行渠道 |
|
|
} |
|
|
} |