8 changed files with 222 additions and 0 deletions
@ -0,0 +1,33 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 描述一下 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/7/27 17:21 |
|||
*/ |
|||
@Data |
|||
public class FootBarPatternFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 8607183484805804359L; |
|||
/** |
|||
* 产品配置:default; 客户定制化里面就传客户id |
|||
*/ |
|||
@NotBlank(message = "customerId不能为空") |
|||
private String customerId; |
|||
/** |
|||
* 工作端:gov;居民端resi |
|||
*/ |
|||
@NotBlank(message = "appType不能为空") |
|||
private String appType; |
|||
|
|||
/** |
|||
* 参数值含义:flat:水平模式;float:浮起某个菜单 |
|||
*/ |
|||
@NotBlank(message = "pattern不能为空,参数值含义:flat:水平模式;float:浮起某个菜单") |
|||
private String pattern; |
|||
} |
@ -0,0 +1,28 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 查询FootBar显示模式(产品配置+客户定制化通用) |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/7/27 16:40 |
|||
*/ |
|||
@Data |
|||
public class FootBarPatternQueryFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 2928030075406974562L; |
|||
/** |
|||
* 产品配置:default; 客户定制化里面就传客户id |
|||
*/ |
|||
@NotBlank(message = "customerId不能为空") |
|||
private String customerId; |
|||
/** |
|||
* 工作端:gov;居民端resi |
|||
*/ |
|||
@NotBlank(message = "appType不能为空") |
|||
private String appType; |
|||
|
|||
} |
@ -0,0 +1,23 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 查询FootBar显示模式(产品配置+客户定制化通用) |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/7/27 16:49 |
|||
*/ |
|||
@Data |
|||
public class FootBarPatternQueryResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -3185762444171339921L; |
|||
|
|||
/** |
|||
* 参数值含义:flat:水平模式;float:浮起某个菜单 |
|||
*/ |
|||
private String pattern; |
|||
|
|||
private String customerId; |
|||
} |
Loading…
Reference in new issue