ludc
2023-06-09 00062ed2e07d3d705abd1baa10ee483617f10dfb
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.vci.ubcs.code.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.github.yulichang.annotation.EntityMapping;
import com.vci.ubcs.starter.constant.CodeTableNameConstant;
import com.vci.ubcs.starter.revision.model.BaseModel;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 编码规则管理-引用码段-参照配置-显示属性配置
 *
 * @author ludc
 * @date 2023/5/19 17:35
 */
@Data
@TableName(CodeTableNameConstant.PL_CODE_SHOWFIELDCONFIG)
@ApiModel(value = "CodeShowFieldConfig对象", description = "编码规则管理-引用码段-参照配置-显示属性配置")
public class CodeShowFieldConfig implements Serializable {
 
    private static final long serialVersionUID = -71135592796848692L;
 
    /**
     * 主键
     */
    @TableId(value = "OID",type = IdType.ASSIGN_UUID)
    private String oid;
 
    /**
     * 列字段
     */
    private String field;
 
    /**
     * 列名
     */
    private String title;
 
    /**
     * 字段类型
     */
    private String fieldType;
 
    /**
     * 列表可排序
     */
    private String sort;
 
    /**
     * 显示的属性中的-排序字段
     */
    private String attrSortField;
 
    /**
     * 字段宽度
     */
    private Long width;
 
    /**
     * 列固定位置
     */
    private String fixedPosition;
 
    /**
     * js显示代码
     */
    private String templet;
 
    /**
     * 是否快速查询
     */
    private String isQuery;
 
    /**
     * 关联的参照配置主键
     */
    private String referConfigOid;
 
    /**
     * 排序
     */
    private Integer orderNum;
 
}