129 lines
1.8 KiB
Plaintext
129 lines
1.8 KiB
Plaintext
package com.bonus.index.beans;
|
|
|
|
public class IndexTotalWarnBean {
|
|
|
|
private String id ;
|
|
|
|
private String maType;
|
|
|
|
private String maName;
|
|
|
|
private String maUnit;
|
|
|
|
private String total;
|
|
|
|
private String storageNum;
|
|
|
|
private String inuseNum;
|
|
|
|
private String repairNum;
|
|
|
|
private String time;
|
|
|
|
private String content;
|
|
|
|
private String isCount;
|
|
|
|
private String typeId;
|
|
|
|
|
|
public String getTypeId() {
|
|
return typeId;
|
|
}
|
|
|
|
public void setTypeId(String typeId) {
|
|
this.typeId = typeId;
|
|
}
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getMaType() {
|
|
return maType;
|
|
}
|
|
|
|
public void setMaType(String maType) {
|
|
this.maType = maType;
|
|
}
|
|
|
|
public String getMaName() {
|
|
return maName;
|
|
}
|
|
|
|
public void setMaName(String maName) {
|
|
this.maName = maName;
|
|
}
|
|
|
|
public String getMaUnit() {
|
|
return maUnit;
|
|
}
|
|
|
|
public void setMaUnit(String maUnit) {
|
|
this.maUnit = maUnit;
|
|
}
|
|
|
|
public String getTotal() {
|
|
return total;
|
|
}
|
|
|
|
public void setTotal(String total) {
|
|
this.total = total;
|
|
}
|
|
|
|
public String getStorageNum() {
|
|
return storageNum;
|
|
}
|
|
|
|
public void setStorageNum(String storageNum) {
|
|
this.storageNum = storageNum;
|
|
}
|
|
|
|
public String getInuseNum() {
|
|
return inuseNum;
|
|
}
|
|
|
|
public void setInuseNum(String inuseNum) {
|
|
this.inuseNum = inuseNum;
|
|
}
|
|
|
|
public String getRepairNum() {
|
|
return repairNum;
|
|
}
|
|
|
|
public void setRepairNum(String repairNum) {
|
|
this.repairNum = repairNum;
|
|
}
|
|
|
|
public String getTime() {
|
|
return time;
|
|
}
|
|
|
|
public void setTime(String time) {
|
|
this.time = time;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public String getIsCount() {
|
|
return isCount;
|
|
}
|
|
|
|
public void setIsCount(String isCount) {
|
|
this.isCount = isCount;
|
|
}
|
|
|
|
|
|
|
|
}
|