xiejun
2024-11-01 0496aed6e04c5084f05ce1035ba9ec38e3d4e9c7
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
package com.vci.ubcs.code.vo.webserviceModel.applybz;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import com.vci.ubcs.code.vo.webserviceModel.apply.SectionsVO;
 
/**
 * 分类信息
 */
@XStreamAlias("classify")
public class ClassfyBZVO {
    /**
     * 分类代号
     */
    @XStreamAsAttribute
    private String classCode;
    /**
     * 库代号
     */
    @XStreamAsAttribute
    private String library;
    /**
     * 类路径
     */
    @XStreamAsAttribute
    private  String fullclsfNamePath;
 
    /**
     * 码段信息
     */
    private SectionsVO sections;
 
    /**
     * 数据集合
     */
    private ApplyBZDatasVO objects;
 
    public String getClassCode() {
        return classCode;
    }
 
    public void setClassCode(String classCode) {
        this.classCode = classCode;
    }
 
    public String getLibrary() {
        return library;
    }
 
    public void setLibrary(String library) {
        this.library = library;
    }
 
    public String getFullclsfNamePath() {
        return fullclsfNamePath;
    }
 
    public void setFullclsfNamePath(String fullclsfNamePath) {
        this.fullclsfNamePath = fullclsfNamePath;
    }
 
    public ApplyBZDatasVO getObjects() {
        return objects;
    }
 
    public void setObjects(ApplyBZDatasVO objects) {
        this.objects = objects;
    }
 
    public SectionsVO getSections() {
        return sections;
    }
 
    public void setSections(SectionsVO sections) {
        this.sections = sections;
    }
 
    @Override
    public String toString() {
        return "ClassfyBZVO{" +
            "classCode='" + classCode + '\'' +
            ", library='" + library + '\'' +
            ", fullclsfNamePath='" + fullclsfNamePath + '\'' +
            ", objects=" + objects +
            '}';
    }
}