package com.shlanbao.tzsc.pms.cos.maintain.beans;
|
|
|
import com.shlanbao.tzsc.base.model.BaseEntity;
|
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
|
|
public class MaintainBean extends BaseEntity {
|
private String id;
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
|
private String takeeffectDate;
|
private Double matPrice;
|
private String matName;
|
private String matId;
|
private Long enabled;
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
|
private String date1;
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
|
private String date2;
|
private String attr1;//备注
|
private String shiftId;
|
private String shiftName;
|
private String unitId;
|
private String unitName;
|
private String matType;
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public String getTakeeffectDate() {
|
return takeeffectDate;
|
}
|
public void setTakeeffectDate(String takeeffectDate) {
|
this.takeeffectDate = takeeffectDate;
|
}
|
public Double getMatPrice() {
|
return matPrice;
|
}
|
public void setMatPrice(Double matPrice) {
|
this.matPrice = matPrice;
|
}
|
public String getMatName() {
|
return matName;
|
}
|
public void setMatName(String matName) {
|
this.matName = matName;
|
}
|
public String getMatId() {
|
return matId;
|
}
|
public void setMatId(String matId) {
|
this.matId = matId;
|
}
|
/*public String getEnabled() {
|
return enabled;
|
}
|
public void setEnabled(String enabled) {
|
this.enabled = enabled;
|
}*/
|
|
public Long getEnabled() {
|
return enabled;
|
}
|
|
public void setEnabled(Long enabled) {
|
this.enabled = enabled;
|
}
|
|
public String getDate1() {
|
return date1;
|
}
|
public void setDate1(String date1) {
|
this.date1 = date1;
|
}
|
public String getDate2() {
|
return date2;
|
}
|
public void setDate2(String date2) {
|
this.date2 = date2;
|
}
|
public String getAttr1() {
|
return attr1;
|
}
|
public void setAttr1(String attr1) {
|
this.attr1 = attr1;
|
}
|
public String getShiftId() {
|
return shiftId;
|
}
|
public void setShiftId(String shiftId) {
|
this.shiftId = shiftId;
|
}
|
public String getShiftName() {
|
return shiftName;
|
}
|
public void setShiftName(String shiftName) {
|
this.shiftName = shiftName;
|
}
|
public String getUnitId() {
|
return unitId;
|
}
|
public void setUnitId(String unitId) {
|
this.unitId = unitId;
|
}
|
public String getUnitName() {
|
return unitName;
|
}
|
public void setUnitName(String unitName) {
|
this.unitName = unitName;
|
}
|
|
public String getMatType() {
|
return matType;
|
}
|
|
public void setMatType(String matType) {
|
this.matType = matType;
|
}
|
}
|