微调
This commit is contained in:
@@ -1,52 +0,0 @@
|
||||
//package com.njcn.system.pojo.param;
|
||||
//
|
||||
//import com.njcn.common.pojo.constant.PatternRegex;
|
||||
//import com.njcn.web.constant.ValidMessage;
|
||||
//import io.swagger.annotations.ApiModelProperty;
|
||||
//import lombok.Data;
|
||||
//import lombok.EqualsAndHashCode;
|
||||
//import org.hibernate.validator.constraints.Range;
|
||||
//
|
||||
//import javax.validation.constraints.NotBlank;
|
||||
//import javax.validation.constraints.NotNull;
|
||||
//import javax.validation.constraints.Pattern;
|
||||
//
|
||||
//@Data
|
||||
//public class DicParam {
|
||||
//
|
||||
// @ApiModelProperty("节点")
|
||||
// @NotBlank(message = ValidMessage.PID_NOT_BLANK)
|
||||
// private String pid;
|
||||
//
|
||||
// @ApiModelProperty("名称")
|
||||
// @NotBlank(message = ValidMessage.NAME_NOT_BLANK)
|
||||
// @Pattern(regexp = PatternRegex.DIC_REGEX, message = ValidMessage.NAME_FORMAT_ERROR)
|
||||
// private String name;
|
||||
//
|
||||
// @ApiModelProperty("编号")
|
||||
// @NotBlank(message = ValidMessage.CODE_NOT_BLANK)
|
||||
// private String code;
|
||||
//
|
||||
// @ApiModelProperty("排序")
|
||||
// @NotNull(message = ValidMessage.SORT_NOT_NULL)
|
||||
// @Range(min = 0, max = 999, message = ValidMessage.PARAM_FORMAT_ERROR)
|
||||
// private Integer sort;
|
||||
//
|
||||
// @ApiModelProperty("描述")
|
||||
// private String remark;
|
||||
//
|
||||
//
|
||||
// /**
|
||||
// * 更新操作实体
|
||||
// * 需要填写的参数:id
|
||||
// */
|
||||
// @Data
|
||||
// @EqualsAndHashCode(callSuper = true)
|
||||
// public static class UpdateParam extends DicParam {
|
||||
//
|
||||
// @ApiModelProperty("Id")
|
||||
// @NotBlank(message = ValidMessage.ID_NOT_BLANK)
|
||||
// @Pattern(regexp = PatternRegex.SYSTEM_ID, message = ValidMessage.ID_FORMAT_ERROR)
|
||||
// private String id;
|
||||
// }
|
||||
//}
|
||||
@@ -1,30 +0,0 @@
|
||||
//package com.njcn.system.pojo.po;
|
||||
//
|
||||
//import com.baomidou.mybatisplus.annotation.TableName;
|
||||
//import com.njcn.db.bo.BaseEntity;
|
||||
//import lombok.Data;
|
||||
//import lombok.EqualsAndHashCode;
|
||||
//
|
||||
//@Data
|
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
//@TableName("sys_dic_tree")
|
||||
//public class Dic extends BaseEntity {
|
||||
//
|
||||
// private static final long serialVersionUID = 1L;
|
||||
//
|
||||
// private String id;
|
||||
//
|
||||
// private String pid;
|
||||
//
|
||||
// private String pids;
|
||||
//
|
||||
// private String name;
|
||||
//
|
||||
// private String code;
|
||||
//
|
||||
// private Integer sort;
|
||||
//
|
||||
// private String remark;
|
||||
//
|
||||
// private Integer status;
|
||||
//}
|
||||
@@ -1,35 +0,0 @@
|
||||
//package com.njcn.system.pojo.vo;
|
||||
//
|
||||
//import io.swagger.annotations.ApiModelProperty;
|
||||
//import lombok.Data;
|
||||
//
|
||||
//import java.io.Serializable;
|
||||
//import java.util.List;
|
||||
//
|
||||
//@Data
|
||||
//public class DicVO implements Serializable {
|
||||
//
|
||||
// @ApiModelProperty("Id")
|
||||
// private String id;
|
||||
//
|
||||
// @ApiModelProperty("父节点")
|
||||
// private String pid;
|
||||
//
|
||||
// @ApiModelProperty("名称")
|
||||
// private String name;
|
||||
//
|
||||
// @ApiModelProperty("编码")
|
||||
// private String code;
|
||||
//
|
||||
// @ApiModelProperty("排序")
|
||||
// private Integer sort;
|
||||
//
|
||||
// @ApiModelProperty("描述")
|
||||
// private String remark;
|
||||
//
|
||||
// @ApiModelProperty("状态")
|
||||
// private Integer status;
|
||||
//
|
||||
// @ApiModelProperty("子级")
|
||||
// List<DicVO> children;
|
||||
//}
|
||||
Reference in New Issue
Block a user