forked from rongchao/epmet-cloud-rizhao
14 changed files with 360 additions and 76 deletions
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/1/17 10:09 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AddOftenUseFunctionFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -8044386389656626183L; |
||||
|
|
||||
|
public interface AddOftenUseFunctionForm{} |
||||
|
|
||||
|
@NotBlank(message = "menuId不能为空", groups = AddOftenUseFunctionForm.class) |
||||
|
private String menuId; |
||||
|
|
||||
|
@NotNull(message = "sort不能为空", groups = AddOftenUseFunctionForm.class) |
||||
|
private Integer sort; |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/1/17 9:41 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class OftenUseFunctionListResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 8561818114575776804L; |
||||
|
|
||||
|
/** |
||||
|
* 跳转url |
||||
|
*/ |
||||
|
private String url; |
||||
|
|
||||
|
/** |
||||
|
* 菜单ID |
||||
|
*/ |
||||
|
private String menuId; |
||||
|
|
||||
|
/** |
||||
|
* 菜单名字 |
||||
|
*/ |
||||
|
private String menuName; |
||||
|
|
||||
|
/** |
||||
|
* 图标 |
||||
|
*/ |
||||
|
private String icon; |
||||
|
|
||||
|
/** |
||||
|
* 排序 |
||||
|
*/ |
||||
|
private String sort; |
||||
|
} |
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/1/17 10:59 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EditIndividualCategoryFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -3492393795553841513L; |
||||
|
|
||||
|
public interface EditIndividualCategoryForm{} |
||||
|
|
||||
|
@NotBlank(message = "columnId不能为空",groups = EditIndividualCategoryForm.class) |
||||
|
private String columnId; |
||||
|
|
||||
|
@NotNull(message = "sort不能为空",groups = EditIndividualCategoryForm.class) |
||||
|
private Integer sort; |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/1/17 10:52 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IndividualCategoryListResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -3294223041971531203L; |
||||
|
|
||||
|
/** |
||||
|
* 标签 |
||||
|
*/ |
||||
|
private String label; |
||||
|
|
||||
|
/** |
||||
|
* 图片 |
||||
|
*/ |
||||
|
private String managementIcon; |
||||
|
|
||||
|
/** |
||||
|
* 字段名 |
||||
|
*/ |
||||
|
private String columnName; |
||||
|
|
||||
|
/** |
||||
|
* 排序 |
||||
|
*/ |
||||
|
private Integer sort; |
||||
|
} |
Loading…
Reference in new issue