ludc
2023-03-30 1dc8a3226e9ccb8b35567a0a55495d53b6352703
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package com.vci.ubcs.code.entity;
 
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.vci.starter.web.annotation.Column;
import com.vci.starter.web.annotation.VciBtmType;
import com.vci.starter.web.constant.FrameWorkLcStatusConstant;
import com.vci.starter.web.model.BaseModel;
import com.vci.ubcs.code.constant.MdmBtmTypeConstant;
 
/**
 * 记录工艺推送过来的数据信息
 * @author wangyi
 * @date 2022-3-7
 */
@VciBtmType(name = MdmBtmTypeConstant.DOCKING_PRE_APPLY_DATA_INFO,text = "记录工艺推送过来的数据信息",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE)
@TableName("PL_CODE_DOCKINGPREAPPLYDATAINFO")
public class DockingPreApplyDataInfoDO extends BaseModel {
 
    /**
     * 序列化
     */
    private static final long serialVersionUID = 5020487634341415429L;
 
    /**
     * data的oid
     */
    @Column(nullable = false,columnDefinition = "data的oid")
    private String dataoid;
 
    /**
     * 唯一标识,工艺里边的图号
     */
    @Column(nullable = false,columnDefinition = "唯一标识")
    private String uniquecode;
 
    /**
     * 属性key
     */
    @Column(nullable = true,columnDefinition = "属性key")
    private String key;
 
    /**
     * 属性key含义
     */
    @Column(nullable = true,columnDefinition = "属性key含义")
    private String mean;
 
    /**
     * 属性value
     */
    @Column(nullable = true,columnDefinition = "属性value",length = 4000)
    private String value;
 
    public String getDataoid() {
        return dataoid;
    }
 
    public void setDataoid(String dataoid) {
        this.dataoid = dataoid;
    }
 
    public String getUniquecode() {
        return uniquecode;
    }
 
    public void setUniquecode(String uniquecode) {
        this.uniquecode = uniquecode;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public String getMean() {
        return mean;
    }
 
    public void setMean(String mean) {
        this.mean = mean;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    @Override
    public String toString() {
        return "DockingPSMDataInfoDO{" +
                "dataoid='" + dataoid + '\'' +
                ", uniquecode='" + uniquecode + '\'' +
                ", key='" + key + '\'' +
                ", mean='" + mean + '\'' +
                ", value='" + value + '\'' +
                '}';
    }
}