ludc
2023-03-27 82a410d9ec7a5d15eed27e9990cff371feab43a1
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
package org.springblade.code.model;
 
 
import org.springblade.code.constant.MdmBtmTypeConstant;
import com.vci.starter.web.annotation.Column;
import com.vci.starter.web.annotation.VciBtmType;
import com.vci.starter.web.annotation.VciUseRefer;
import com.vci.starter.web.constant.FrameWorkLcStatusConstant;
import com.vci.starter.web.model.BaseModel;
 
/**
 * 阶段的属性
 * @author weidy
 * @date 2022-1-14
 */
@VciBtmType(name = MdmBtmTypeConstant.CODE_PHASE_ATTR,text = "阶段的属性",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE)
public class CodePhaseAttrDO extends BaseModel {
 
    /**
     * 序列化
     */
    private static final long serialVersionUID = 1316335276045033657L;
    /**
     * 所属阶段的信息
     */
    @Column(nullable = false,columnDefinition = "所属模板阶段")
    @VciUseRefer(MdmBtmTypeConstant.CODE_TEMPLATE_PHASE)
    private String codePhaseOid;
 
    /**
     * 属性编号
     */
    @Column(columnDefinition = "属性编号",nullable = false)
    private String id;
 
    /**
     * 属性名称
     */
    @Column(columnDefinition = "属性名称")
    private String name;
 
    /**
     * 所属属性分组
     */
    @Column(columnDefinition = "所属属性分组")
    private String attributeGroup;
 
    public String getAttributeGroup() {
        return attributeGroup;
    }
 
    public void setAttributeGroup(String attributeGroup) {
        this.attributeGroup = attributeGroup;
    }
 
    public String getCodePhaseOid() {
        return codePhaseOid;
    }
 
    public void setCodePhaseOid(String codePhaseOid) {
        this.codePhaseOid = codePhaseOid;
    }
 
    @Override
    public String getId() {
        return id;
    }
 
    @Override
    public void setId(String id) {
        this.id = id;
    }
 
    @Override
    public String getName() {
        return name;
    }
 
    @Override
    public void setName(String name) {
        this.name = name;
    }
 
    @Override
    public String toString() {
        return "CodePhaseAttrDO{" +
                "codePhaseOid='" + codePhaseOid + '\'' +
                ", id='" + id + '\'' +
                ", name='" + name + '\'' +
                ", attributeGroup='" + attributeGroup + '\'' +
                "} " + super.toString();
    }
}