113 lines
1.8 KiB
Plaintext
113 lines
1.8 KiB
Plaintext
package com.bonus.index.beans;
|
|
|
|
public class PartTwoBean {
|
|
|
|
|
|
private String id;
|
|
|
|
private String value;
|
|
|
|
private String total;
|
|
|
|
private PartTwoBean newStorage;
|
|
|
|
private PartTwoBean repairStorage;
|
|
|
|
private PartTwoBean inventoryStorage;
|
|
|
|
private PartTwoBean returnStorage;
|
|
|
|
private PartTwoBean equipmentCount;
|
|
|
|
private PartTwoBean deviceCount;
|
|
private String time ;
|
|
|
|
|
|
|
|
public String getTime() {
|
|
return time;
|
|
}
|
|
|
|
public void setTime(String time) {
|
|
this.time = time;
|
|
}
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public String getTotal() {
|
|
return total;
|
|
}
|
|
|
|
public void setTotal(String total) {
|
|
this.total = total;
|
|
}
|
|
|
|
public PartTwoBean getNewStorage() {
|
|
return newStorage;
|
|
}
|
|
|
|
public void setNewStorage(PartTwoBean newStorage) {
|
|
this.newStorage = newStorage;
|
|
}
|
|
|
|
public PartTwoBean getRepairStorage() {
|
|
return repairStorage;
|
|
}
|
|
|
|
public void setRepairStorage(PartTwoBean repairStorage) {
|
|
this.repairStorage = repairStorage;
|
|
}
|
|
|
|
public PartTwoBean getInventoryStorage() {
|
|
return inventoryStorage;
|
|
}
|
|
|
|
public void setInventoryStorage(PartTwoBean inventoryStorage) {
|
|
this.inventoryStorage = inventoryStorage;
|
|
}
|
|
|
|
public PartTwoBean getReturnStorage() {
|
|
return returnStorage;
|
|
}
|
|
|
|
public void setReturnStorage(PartTwoBean returnStorage) {
|
|
this.returnStorage = returnStorage;
|
|
}
|
|
|
|
public PartTwoBean getEquipmentCount() {
|
|
return equipmentCount;
|
|
}
|
|
|
|
public void setEquipmentCount(PartTwoBean equipmentCount) {
|
|
this.equipmentCount = equipmentCount;
|
|
}
|
|
|
|
public PartTwoBean getDeviceCount() {
|
|
return deviceCount;
|
|
}
|
|
|
|
public void setDeviceCount(PartTwoBean deviceCount) {
|
|
this.deviceCount = deviceCount;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|