ludc
2023-05-26 850dedca3754c8d29ce74bb4a850f9fc0e58d410
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
package com.vci.ubcs.code.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.github.yulichang.annotation.EntityMapping;
import com.vci.ubcs.starter.revision.model.BaseModel;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * 编码规则管理-引用码段-参照配置-显示属性配置
 *
 * @author ludc
 * @date 2023/5/19 17:35
 */
@Data
@TableName("PL_CODE_SHOWFIELDCONFIG")
@ApiModel(value = "CodeShowFieldConfig对象", description = "编码规则管理-引用码段-参照配置-显示属性配置")
public class CodeShowFieldConfig extends BaseModel {
 
    private static final long serialVersionUID = -71135592796848692L;
 
    /**
     * 列字段
     */
    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;
 
}