101 lines
1.1 KiB
Plaintext
101 lines
1.1 KiB
Plaintext
package com.bonus.index.beans;
|
|
|
|
public class IndexStorageWarnBean {
|
|
|
|
private String id ;
|
|
|
|
private String maType;
|
|
|
|
private String maName;
|
|
|
|
private String maUnit;
|
|
|
|
private String storageNum;
|
|
|
|
private String isCount;
|
|
|
|
|
|
|
|
|
|
private String type;
|
|
|
|
|
|
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 getStorageNum() {
|
|
return storageNum;
|
|
}
|
|
|
|
|
|
public void setStorageNum(String storageNum) {
|
|
this.storageNum = storageNum;
|
|
}
|
|
|
|
|
|
public String getIsCount() {
|
|
return isCount;
|
|
}
|
|
|
|
|
|
public void setIsCount(String isCount) {
|
|
this.isCount = isCount;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|