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;
|
}
|
|
|
|
}
|