forked from luyan/epmet-cloud-lingshan
10 changed files with 226 additions and 12 deletions
@ -0,0 +1,28 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description 运营端-客户定制化服务-获取客户首页配置的设计稿-入参 |
|||
* @Author yangshaoping |
|||
* @Date 2020/3/16 11:27 |
|||
*/ |
|||
@Data |
|||
public class HomeDesignByCustomerFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 5272251336837515372L; |
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
@NotBlank(message = "客户ID不能为空") |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 所属端类型0.居民端,1.政府端 |
|||
*/ |
|||
@NotBlank(message = "所属端类型不能为空(0居民端1政府端)") |
|||
private String clientType; |
|||
|
|||
} |
@ -0,0 +1,50 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description 运营端-客户定制化服务-获取客户可用组件列表-返参[commonList(通用组件列表)属性对应DTO] |
|||
* @Author yang |
|||
* @Date 2020/3/16 12:59 |
|||
*/ |
|||
@Data |
|||
public class CommonComponentDesignResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 2971689193155710437L; |
|||
|
|||
/** |
|||
* 组件id |
|||
*/ |
|||
private String componentId; |
|||
|
|||
/** |
|||
* 组件名称 |
|||
*/ |
|||
private String componentName; |
|||
/** |
|||
* 所属区域 |
|||
*/ |
|||
private String region; |
|||
|
|||
/** |
|||
* 组件前端标识 |
|||
*/ |
|||
private String componentFrontId; |
|||
|
|||
/** |
|||
* 高级设置 |
|||
*/ |
|||
private String configuration; |
|||
|
|||
/** |
|||
* 默认数据 |
|||
*/ |
|||
private String demoData; |
|||
|
|||
/** |
|||
* 显示顺序 |
|||
*/ |
|||
private int displayOrder; |
|||
|
|||
} |
@ -0,0 +1,37 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
import java.util.Set; |
|||
|
|||
/** |
|||
* @Description 运营端-客户定制化服务-获取客户首页配置的设计稿返参 |
|||
* @Author yang |
|||
* @Date 2020/3/16 12:57 |
|||
*/ |
|||
@Data |
|||
public class HomeDesignByCustomerResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 1496786567582303921L; |
|||
/** |
|||
* 标题区 |
|||
*/ |
|||
private CommonComponentDesignResultDTO titleList; |
|||
/** |
|||
* 置顶区 |
|||
*/ |
|||
private CommonComponentDesignResultDTO topList; |
|||
/** |
|||
* 功能区 |
|||
*/ |
|||
private List<CommonComponentDesignResultDTO> functionList; |
|||
/** |
|||
* 悬浮区 |
|||
*/ |
|||
private CommonComponentDesignResultDTO floatingList; |
|||
/** |
|||
*用于标识已使用的功能组件id列表(不含通用组件) |
|||
*/ |
|||
private List<String> usedComponentIdList; |
|||
} |
Loading…
Reference in new issue