15 changed files with 346 additions and 16 deletions
@ -0,0 +1,38 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @author zhaoqifeng |
||||
|
* @dscription |
||||
|
* @date 2020/8/19 10:53 |
||||
|
*/ |
||||
|
@NoArgsConstructor |
||||
|
@Data |
||||
|
public class UpdateCustomerFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1296290251616658023L; |
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
/** |
||||
|
* 客户名 |
||||
|
*/ |
||||
|
private String customerName; |
||||
|
/** |
||||
|
* logo |
||||
|
*/ |
||||
|
private String logo; |
||||
|
/** |
||||
|
* 根管理员姓名 |
||||
|
*/ |
||||
|
private String rootManageName; |
||||
|
/** |
||||
|
* 根管理员电话 |
||||
|
*/ |
||||
|
private String rootManagePhone; |
||||
|
} |
@ -0,0 +1,66 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @author zhaoqifeng |
||||
|
* @dscription |
||||
|
* @date 2020/8/19 9:53 |
||||
|
*/ |
||||
|
@NoArgsConstructor |
||||
|
@Data |
||||
|
public class CustomerListResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -2167406082548134982L; |
||||
|
/** |
||||
|
* 客户id |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
/** |
||||
|
* 客户名称 |
||||
|
*/ |
||||
|
private String customerName; |
||||
|
/** |
||||
|
* 产品标题 显示在产品顶端的标题 |
||||
|
*/ |
||||
|
private String title; |
||||
|
/** |
||||
|
* 有效期 |
||||
|
*/ |
||||
|
private String validityTime; |
||||
|
/** |
||||
|
* 客户组织级别:0.省级,1市级,2.区县级,3.乡镇街道级 字典表key:organizationlevel |
||||
|
*/ |
||||
|
private String organizationLevels; |
||||
|
/** |
||||
|
* 客户logo |
||||
|
*/ |
||||
|
private String logo; |
||||
|
/** |
||||
|
* 客户允许创建的网格数 |
||||
|
*/ |
||||
|
private Integer gridNumber; |
||||
|
/** |
||||
|
* 跟管理员姓名 |
||||
|
*/ |
||||
|
private String rootManageName; |
||||
|
/** |
||||
|
* 跟管理员电话 |
||||
|
*/ |
||||
|
private String rootManagePhone; |
||||
|
/** |
||||
|
* 省份 |
||||
|
*/ |
||||
|
private String province; |
||||
|
/** |
||||
|
* 城市 |
||||
|
*/ |
||||
|
private String city; |
||||
|
/** |
||||
|
* 区县 |
||||
|
*/ |
||||
|
private String county; |
||||
|
} |
@ -0,0 +1,31 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @author zhaoqifeng |
||||
|
* @dscription |
||||
|
* @date 2020/8/19 14:20 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class UpdateRootManageFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 3954225931981940018L; |
||||
|
/** |
||||
|
* 根组织ID |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
/** |
||||
|
* 角色key |
||||
|
*/ |
||||
|
private String roleKey; |
||||
|
/** |
||||
|
* 根管理员姓名 |
||||
|
*/ |
||||
|
private String rootManageName; |
||||
|
/** |
||||
|
* 根管理员电话 |
||||
|
*/ |
||||
|
private String rootManagePhone; |
||||
|
} |
Loading…
Reference in new issue