BaseFile.java
2.58 KB
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
package com.rnt.model.zf.base;
import com.jfinal.plugin.activerecord.Model;
import com.jfinal.plugin.activerecord.IBean;
/**
* Generated by JFinal, do not modify this file.
*/
@SuppressWarnings({"serial", "unchecked"})
public abstract class BaseFile<M extends BaseFile<M>> extends Model<M> implements IBean {
public M setId(java.lang.Long id) {
set("id", id);
return (M)this;
}
public java.lang.Long getId() {
return get("id");
}
public M setSourceId(java.lang.String sourceId) {
set("source_id", sourceId);
return (M)this;
}
public java.lang.String getSourceId() {
return get("source_id");
}
public M setFilePath(java.lang.String filePath) {
set("file_path", filePath);
return (M)this;
}
public java.lang.String getFilePath() {
return get("file_path");
}
public M setFileType(java.lang.Integer fileType) {
set("file_type", fileType);
return (M)this;
}
public java.lang.Integer getFileType() {
return get("file_type");
}
public M setFileSize(java.math.BigDecimal fileSize) {
set("file_size", fileSize);
return (M)this;
}
public java.math.BigDecimal getFileSize() {
return get("file_size");
}
public M setFileName(java.lang.String fileName) {
set("file_name", fileName);
return (M)this;
}
public java.lang.String getFileName() {
return get("file_name");
}
public M setFileSuffix(java.lang.String fileSuffix) {
set("file_suffix", fileSuffix);
return (M)this;
}
public java.lang.String getFileSuffix() {
return get("file_suffix");
}
public M setFileState(java.lang.Integer fileState) {
set("file_state", fileState);
return (M)this;
}
public java.lang.Integer getFileState() {
return get("file_state");
}
public M setDataState(java.lang.Integer dataState) {
set("data_state", dataState);
return (M)this;
}
public java.lang.Integer getDataState() {
return get("data_state");
}
public M setCreateEmpid(java.lang.String createEmpid) {
set("create_empid", createEmpid);
return (M)this;
}
public java.lang.String getCreateEmpid() {
return get("create_empid");
}
public M setCreateDate(java.util.Date createDate) {
set("create_date", createDate);
return (M)this;
}
public java.util.Date getCreateDate() {
return get("create_date");
}
public M setModfiyEmpid(java.lang.String modfiyEmpid) {
set("modfiy_empid", modfiyEmpid);
return (M)this;
}
public java.lang.String getModfiyEmpid() {
return get("modfiy_empid");
}
public M setModfiyDate(java.util.Date modfiyDate) {
set("modfiy_date", modfiyDate);
return (M)this;
}
public java.util.Date getModfiyDate() {
return get("modfiy_date");
}
}