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
package com.vci.ubcs.code.dto;
 
 
import com.vci.starter.web.pagemodel.BaseModelVO;
 
import java.util.List;
 
/**
 * 模板阶段数据传输对象
 *
 * @author weidy
 * @date 2022-01-24
 */
public class CodeTemplatePhaseDTO extends BaseModelVO {
 
    /**
     * 禁止修改这个值
     */
    private static final long serialVersionUID = 4615707117809299474L;
 
    /**
     * 所属编码规则
     */
    private String codeclassifytemplateoid;
 
    /**
     * 所属编码规则显示文本
     */
    private String codeclassifytemplateoidName;
 
    /**
     * 包含的属性
     */
    private List<CodePhaseAttrDTO> attributes;
 
    /**
     * 获取 所属编码规则
     */
    public String getCodeclassifytemplateoid (){
        return codeclassifytemplateoid;
    }
 
    /**
     * 设置 所属编码规则
     */
    public void setCodeclassifytemplateoid (String codeclassifytemplateoid){
        this.codeclassifytemplateoid = codeclassifytemplateoid;
    }
 
    /**
     * 获取所属编码规则显示文本
     */
    public String getCodeclassifytemplateoidName (){
        return codeclassifytemplateoidName;
    }
 
    /**
     * 设置所属编码规则显示文本
     */
    public void setCodeclassifytemplateoidName (String codeclassifytemplateoidName){
        this.codeclassifytemplateoidName = codeclassifytemplateoidName;
    }
 
    public List<CodePhaseAttrDTO> getAttributes() {
        return attributes;
    }
 
    public void setAttributes(List<CodePhaseAttrDTO> attributes) {
        this.attributes = attributes;
    }
 
    @Override
    public String toString() {
        return "CodeTemplatePhaseDTO{" +
                "codeclassifytemplateoid='" + codeclassifytemplateoid + '\'' +
                ", codeclassifytemplateoidName='" + codeclassifytemplateoidName + '\'' +
                ", attributes=" + attributes +
                "} " + super.toString();
    }
}