1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.yiboshi.science.entity;
import com.baomidou.mybatisplus.annotation.FieldStrategy;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.yiboshi.science.base.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
/**
* 参数表VO
*
* @author lkl
* @version 2021-08-26
*/
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "参数表VO")
public class SystemParameter extends BaseEntity {
/** id */
@ApiModelProperty(value = "id" )
@Length(max=36, message = "id不能大于36")
@TableId(value="id",type = IdType.UUID )
private String id;
/** 参数类型 */
@ApiModelProperty(value = "参数类型", position = 1 )
private Integer typeId;
/** 父Id */
@ApiModelProperty(value = "父Id", position = 2 )
@Length(max=36, message = "父Id不能大于36")
// @TableField(strategy = FieldStrategy.IGNORED)
private String parentId;
/** 参数名称 */
@ApiModelProperty(value = "参数名称", position = 3 )
@Length(max=200, message = "参数名称不能大于200")
private String name;
/** 标准编码 */
@ApiModelProperty(value = "标准编码", position = 4 )
@Length(max=50, message = "标准编码不能大于50")
private String gbCode;
/** 树编码 */
@ApiModelProperty(value = "树编码", position = 5 )
@Length(max=50, message = "树编码不能大于50")
private String treeCode;
/** 显示顺序 */
@ApiModelProperty(value = "显示顺序", position = 6 )
private Integer displayOrder;
/** 状态 */
@ApiModelProperty(value = "状态", position = 7 )
private Integer noteState;
/** 系统编码 */
@ApiModelProperty(value = "系统编码", position = 8)
@Length(max=50, message = "系统编码不能大于50")
private String systemCode;
/** 是否为必填项 */
@ApiModelProperty(value = "是否为必填项", position = 8)
private Boolean isRequired;
}