ludc
2023-11-30 1b8098b7f79b66a80e5ca49d8765606cb5fa0408
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
106
107
108
109
package com.vci.ubcs.code.dto;
 
 
import com.vci.ubcs.code.dto.datapush.BaseModelDTO;
 
import java.util.List;
 
/**
 * 编码申请的信息
 * @author weidy
 * @date 2022-2-28
 */
public class CodeOrderDTO extends BaseModelDTO {
 
    /**
     * 序列化
     */
    private static final long serialVersionUID = 1880155181507713245L;
    /**
     * 主题库分类主键
     */
    private String codeClassifyOid;
 
    /**
     * 模板的主键
     */
    private String templateOid;
 
    /**
     * 编码规则的主键
     */
    private String codeRuleOid;
 
    /**
     * 是否在流程中中修改
     */
    private boolean editInProcess;
 
    /**
     * 码段选择的信息
     */
    private List<CodeOrderSecDTO> secDTOList;
 
 
    /**
     * 最大流水号
     */
    private int maxSecNum;
 
    public String getCodeClassifyOid() {
        return codeClassifyOid;
    }
 
    public void setCodeClassifyOid(String codeClassifyOid) {
        this.codeClassifyOid = codeClassifyOid;
    }
 
    public String getTemplateOid() {
        return templateOid;
    }
 
    public void setTemplateOid(String templateOid) {
        this.templateOid = templateOid;
    }
 
    public String getCodeRuleOid() {
        return codeRuleOid;
    }
 
    public void setCodeRuleOid(String codeRuleOid) {
        this.codeRuleOid = codeRuleOid;
    }
 
    public List<CodeOrderSecDTO> getSecDTOList() {
        return secDTOList;
    }
 
    public void setSecDTOList(List<CodeOrderSecDTO> secDTOList) {
        this.secDTOList = secDTOList;
    }
 
    public boolean isEditInProcess() {
        return editInProcess;
    }
 
    public void setEditInProcess(boolean editInProcess) {
        this.editInProcess = editInProcess;
    }
 
    public int getMaxSecNum() {
        return maxSecNum;
    }
 
    public void setMaxSecNum(int maxSecNum) {
        this.maxSecNum = maxSecNum;
    }
 
    @Override
    public String toString() {
        return "CodeOrderDTO{" +
            "codeClassifyOid='" + codeClassifyOid + '\'' +
            ", templateOid='" + templateOid + '\'' +
            ", codeRuleOid='" + codeRuleOid + '\'' +
            ", editInProcess=" + editInProcess +
            ", secDTOList=" + secDTOList +
            ", maxSecNum=" + maxSecNum +
            '}';
    }
}