zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
 
 
/**
 * DocFilemanage entity. @author MyEclipse Persistence Tools
 */
 
public class DocFilemanage  implements java.io.Serializable {
 
 
    // Fields    
 
     private String id;
     private String fileName;
     private String fileType;
     private String fileId;
     private Date createTime;
     private String createPersonId;
     private String createName;
     private String isDeleted;
     private Long securityLevel;
     private String attr1;
     private String attr2;
     private String attr3;
     private String attr4;
 
     private String tableZjId;
    // Constructors
 
    /** default constructor */
    public DocFilemanage() {
    }
 
    
    /** full constructor */
    public DocFilemanage(String fileName, String fileType, String fileId, Date createTime, String createPersonId, String createName, String isDeleted, Long securityLevel, String attr1, String attr2, String attr3, String attr4) {
        this.fileName = fileName;
        this.fileType = fileType;
        this.fileId = fileId;
        this.createTime = createTime;
        this.createPersonId = createPersonId;
        this.createName = createName;
        this.isDeleted = isDeleted;
        this.securityLevel = securityLevel;
        this.attr1 = attr1;
        this.attr2 = attr2;
        this.attr3 = attr3;
        this.attr4 = attr4;
    }
 
   
    // Property accessors
 
    public String getId() {
        return this.id;
    }
    
    public void setId(String id) {
        this.id = id;
    }
 
    public String getFileName() {
        return this.fileName;
    }
    
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
 
    public String getFileType() {
        return this.fileType;
    }
    
    public void setFileType(String fileType) {
        this.fileType = fileType;
    }
 
    public String getFileId() {
        return this.fileId;
    }
    
    public void setFileId(String fileId) {
        this.fileId = fileId;
    }
 
    public Date getCreateTime() {
        return this.createTime;
    }
    
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getCreatePersonId() {
        return this.createPersonId;
    }
    
    public void setCreatePersonId(String createPersonId) {
        this.createPersonId = createPersonId;
    }
 
    public String getCreateName() {
        return this.createName;
    }
    
    public void setCreateName(String createName) {
        this.createName = createName;
    }
 
    public String getIsDeleted() {
        return this.isDeleted;
    }
    
    public void setIsDeleted(String isDeleted) {
        this.isDeleted = isDeleted;
    }
 
    public Long getSecurityLevel() {
        return this.securityLevel;
    }
    
    public void setSecurityLevel(Long securityLevel) {
        this.securityLevel = securityLevel;
    }
 
    public String getAttr1() {
        return this.attr1;
    }
    
    public void setAttr1(String attr1) {
        this.attr1 = attr1;
    }
 
    public String getAttr2() {
        return this.attr2;
    }
    
    public void setAttr2(String attr2) {
        this.attr2 = attr2;
    }
 
    public String getAttr3() {
        return this.attr3;
    }
    
    public void setAttr3(String attr3) {
        this.attr3 = attr3;
    }
 
    public String getAttr4() {
        return this.attr4;
    }
    
    public void setAttr4(String attr4) {
        this.attr4 = attr4;
    }
 
 
    public String getTableZjId() {
        return tableZjId;
    }
 
 
    public void setTableZjId(String tableZjId) {
        this.tableZjId = tableZjId;
    }
   
 
}