TpPFreeberthStatisticRule.java
3.18 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
130
131
132
133
134
135
136
137
138
139
package com.zteits.job.domain;
import java.util.Date;
public class TpPFreeberthStatisticRule {
private Long id;
/**停车场编号*/
private String plNo;
/**统计空闲车位规则编号-对应park_free_berth中的pl_no*/
private String statisticRuleNo;
/**备注*/
private String remark;
/**数据状态:0-失效,1-生效*/
private Integer dataState;
private Date createTime;
private Long createOp;
/**更新时间*/
private Date modifyTime;
/**更新人*/
private Long modifyOp;
/**操作标志,0:新建,1:修改,2:删除*/
private String optFlg;
/**空闲统计SQL*/
private String statisticRuleSql;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
/**获取停车场编号*/
public String getPlNo() {
return plNo;
}
/**设置停车场编号*/
public void setPlNo(String plNo) {
this.plNo = plNo == null ? null : plNo.trim();
}
/**获取统计空闲车位规则编号-对应park_free_berth中的pl_no*/
public String getStatisticRuleNo() {
return statisticRuleNo;
}
/**设置统计空闲车位规则编号-对应park_free_berth中的pl_no*/
public void setStatisticRuleNo(String statisticRuleNo) {
this.statisticRuleNo = statisticRuleNo == null ? null : statisticRuleNo.trim();
}
/**获取备注*/
public String getRemark() {
return remark;
}
/**设置备注*/
public void setRemark(String remark) {
this.remark = remark == null ? null : remark.trim();
}
/**获取数据状态:0-失效,1-生效*/
public Integer getDataState() {
return dataState;
}
/**设置数据状态:0-失效,1-生效*/
public void setDataState(Integer dataState) {
this.dataState = dataState;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Long getCreateOp() {
return createOp;
}
public void setCreateOp(Long createOp) {
this.createOp = createOp;
}
/**获取更新时间*/
public Date getModifyTime() {
return modifyTime;
}
/**设置更新时间*/
public void setModifyTime(Date modifyTime) {
this.modifyTime = modifyTime;
}
/**获取更新人*/
public Long getModifyOp() {
return modifyOp;
}
/**设置更新人*/
public void setModifyOp(Long modifyOp) {
this.modifyOp = modifyOp;
}
/**获取操作标志,0:新建,1:修改,2:删除*/
public String getOptFlg() {
return optFlg;
}
/**设置操作标志,0:新建,1:修改,2:删除*/
public void setOptFlg(String optFlg) {
this.optFlg = optFlg == null ? null : optFlg.trim();
}
/**获取空闲统计SQL*/
public String getStatisticRuleSql() {
return statisticRuleSql;
}
/**设置空闲统计SQL*/
public void setStatisticRuleSql(String statisticRuleSql) {
this.statisticRuleSql = statisticRuleSql == null ? null : statisticRuleSql.trim();
}
}