10 changed files with 196 additions and 20 deletions
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author sun |
||||
|
* @Description 公众号-查询我的信息-接口入参 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class MyInfoFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -6547893374373422628L; |
||||
|
|
||||
|
public interface AddUserInternalGroup { |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 客户Id |
||||
|
*/ |
||||
|
@NotBlank(message = "客户Id不能为空", groups = {MyInfoFormDTO.AddUserInternalGroup.class}) |
||||
|
private String customerId; |
||||
|
|
||||
|
} |
@ -0,0 +1,53 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author sun |
||||
|
* @Description 公众号-查询我的信息-接口返参 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class MyInfoResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3253989119352850315L; |
||||
|
|
||||
|
/** |
||||
|
* 客户Id |
||||
|
*/ |
||||
|
private String customerId = ""; |
||||
|
/** |
||||
|
* 组织名称 |
||||
|
*/ |
||||
|
private String agencyName = ""; |
||||
|
/** |
||||
|
* 新增客户Id |
||||
|
*/ |
||||
|
private String level = ""; |
||||
|
/** |
||||
|
* 包含customerId的token |
||||
|
*/ |
||||
|
private String province = ""; |
||||
|
/** |
||||
|
* 新增客户Id |
||||
|
*/ |
||||
|
private String city = ""; |
||||
|
/** |
||||
|
* 包含customerId的token |
||||
|
*/ |
||||
|
private String district = ""; |
||||
|
/** |
||||
|
* 新增客户Id |
||||
|
*/ |
||||
|
private Integer partyBranchNum; |
||||
|
/** |
||||
|
* 包含customerId的token |
||||
|
*/ |
||||
|
private Integer resiAuthorization; |
||||
|
/** |
||||
|
* 新增客户Id |
||||
|
*/ |
||||
|
private Integer workAuthorization; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue