99 lines
1.6 KiB
Plaintext
99 lines
1.6 KiB
Plaintext
package com.bonus.index.beans;
|
|
|
|
public class PartOneBean {
|
|
|
|
|
|
private String id;
|
|
|
|
private String projectCount;
|
|
|
|
private String equipmentTypes;
|
|
|
|
private String totalCount;
|
|
|
|
private String stockCount;
|
|
|
|
private String inUseCount;
|
|
|
|
private String repairCount;
|
|
|
|
private String scrappedCount;
|
|
|
|
private String time;
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getProjectCount() {
|
|
return projectCount;
|
|
}
|
|
|
|
public void setProjectCount(String projectCount) {
|
|
this.projectCount = projectCount;
|
|
}
|
|
|
|
public String getEquipmentTypes() {
|
|
return equipmentTypes;
|
|
}
|
|
|
|
public void setEquipmentTypes(String equipmentTypes) {
|
|
this.equipmentTypes = equipmentTypes;
|
|
}
|
|
|
|
public String getTotalCount() {
|
|
return totalCount;
|
|
}
|
|
|
|
public void setTotalCount(String totalCount) {
|
|
this.totalCount = totalCount;
|
|
}
|
|
|
|
public String getStockCount() {
|
|
return stockCount;
|
|
}
|
|
|
|
public void setStockCount(String stockCount) {
|
|
this.stockCount = stockCount;
|
|
}
|
|
|
|
public String getInUseCount() {
|
|
return inUseCount;
|
|
}
|
|
|
|
public void setInUseCount(String inUseCount) {
|
|
this.inUseCount = inUseCount;
|
|
}
|
|
|
|
public String getRepairCount() {
|
|
return repairCount;
|
|
}
|
|
|
|
public void setRepairCount(String repairCount) {
|
|
this.repairCount = repairCount;
|
|
}
|
|
|
|
public String getScrappedCount() {
|
|
return scrappedCount;
|
|
}
|
|
|
|
public void setScrappedCount(String scrappedCount) {
|
|
this.scrappedCount = scrappedCount;
|
|
}
|
|
|
|
public String getTime() {
|
|
return time;
|
|
}
|
|
|
|
public void setTime(String time) {
|
|
this.time = time;
|
|
}
|
|
|
|
|
|
|
|
}
|