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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package com.shlanbao.tzsc.pms.equ.lubricate.beans;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.util.Date;
 
/**
 * 
* @ClassName: EqmLubricantBean 
* @Description: 设备润滑 
* @author luo
* @date 2015年3月19日 下午4:15:03 
ID    ID     String
NUM    序号    Int
EQU_LOCATION    设备部位    String
LUB_POSITION    润滑部位    String
FIXED_POINTS    定点点数    String
LUB_OIL    定质润滑油(脂)    String
LUB_METHOD    定法润滑方式    String
CHANGE_OILDOSAGE    标准用量    String
CHANGE_OILCYCLE    标准周期    String
SPE_PERSON    指定人    String
QUA_QUANTITY    定量数量    String
QUA_UNIT    定量单位    String
DES    备注    String
CREATE_TIME    创建日期    Date
LAST_UPDATE_Name    最后修改人姓名    String
SYS_EC    主表ID    String
ENABLE 是否可用               String
 
 
*
 */
public class EqmLubricantBean {
    
    private String id;//ID    
    private String num;
    private String equLocation;
    private String lubPosition;
    private String fixedPoints; 
    private String lubOil;  
    private String lubMethod;
    private String changeOilDosage; 
    private String changeOilCycle;
    private String spePerson;//指定人
    private String quaQuantity; //定量数量
    private String quaUnit;//定量单位
    private String des;//备注
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone="GMT+8")
    private Date createTime;//创建时间
    private String lastUpdateName;//最后修改人姓名
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone="GMT+8")
    private Date lastUpdateTime;
    //private String sysEc; 
    private String categoryId;//主表ID
    private String categoryName;
    private String roleId;//角色ID
    private String enable;//是否可用
    private Integer shiftId;
 
    public Date getLastUpdateTime() {
        return lastUpdateTime;
    }
 
    public void setLastUpdateTime(Date lastUpdateTime) {
        this.lastUpdateTime = lastUpdateTime;
    }
 
    public String getRoleId() {
        return roleId;
    }
    public void setRoleId(String roleId) {
        this.roleId = roleId;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getNum() {
        return num;
    }
    public void setNum(String num) {
        this.num = num;
    }
    public String getEquLocation() {
        return equLocation;
    }
    public void setEquLocation(String equLocation) {
        this.equLocation = equLocation;
    }
    public String getLubPosition() {
        return lubPosition;
    }
    public void setLubPosition(String lubPosition) {
        this.lubPosition = lubPosition;
    }
    public String getFixedPoints() {
        return fixedPoints;
    }
    public void setFixedPoints(String fixedPoints) {
        this.fixedPoints = fixedPoints;
    }
    public String getLubOil() {
        return lubOil;
    }
    public void setLubOil(String lubOil) {
        this.lubOil = lubOil;
    }
    public String getLubMethod() {
        return lubMethod;
    }
    public void setLubMethod(String lubMethod) {
        this.lubMethod = lubMethod;
    }
    public String getChangeOilDosage() {
        return changeOilDosage;
    }
    public void setChangeOilDosage(String changeOilDosage) {
        this.changeOilDosage = changeOilDosage;
    }
    public String getChangeOilCycle() {
        return changeOilCycle;
    }
    public void setChangeOilCycle(String changeOilCycle) {
        this.changeOilCycle = changeOilCycle;
    }
    public String getSpePerson() {
        return spePerson;
    }
    public void setSpePerson(String spePerson) {
        this.spePerson = spePerson;
    }
    public String getQuaQuantity() {
        return quaQuantity;
    }
    public void setQuaQuantity(String quaQuantity) {
        this.quaQuantity = quaQuantity;
    }
    public String getQuaUnit() {
        return quaUnit;
    }
    public void setQuaUnit(String quaUnit) {
        this.quaUnit = quaUnit;
    }
    public String getDes() {
        return des;
    }
    public void setDes(String des) {
        this.des = des;
    }
    public Date getCreateTime() {
        return createTime;
    }
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
    public String getLastUpdateName() {
        return lastUpdateName;
    }
    public void setLastUpdateName(String lastUpdateName) {
        this.lastUpdateName = lastUpdateName;
    }
 
    public String getEnable() {
        return enable;
    }
    public void setEnable(String enable) {
        this.enable = enable;
    }
    public String getCategoryId() {
        return categoryId;
    }
    public void setCategoryId(String categoryId) {
        this.categoryId = categoryId;
    }
    public String getCategoryName() {
        return categoryName;
    }
    public void setCategoryName(String categoryName) {
        this.categoryName = categoryName;
    }
    public Integer getShiftId() {
        return shiftId;
    }
    public void setShiftId(Integer shiftId) {
        this.shiftId = shiftId;
    }
    
    
    
}