package com.bonus.newSettlement.beans; import com.bonus.ma.beans.MachineTypeBean; /** * @Author js * @Date 2020-06-11 * @Table project_settlement_details * @Model 结算明目详情表 */ public class ProjectSettlementDetailsBean implements java.io.Serializable { private static final long serialVersionUID = 1L; private Integer id;//机具类型 private ProjectSettlementInfoBean sltInfo; private String costType; private MachineTypeBean type; private Float num; private Float subtotal; private Float price; private String backDate; private String startDate; private String endDate; private Integer dayLen; private MaTypeProjectStorageBean storage; //private MaBackRecordBean compensate; private String remarks; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public ProjectSettlementInfoBean getSltInfo() { return sltInfo; } public void setSltInfo(ProjectSettlementInfoBean sltInfo) { this.sltInfo = sltInfo; } public String getCostType() { return costType; } public void setCostType(String costType) { this.costType = costType; } public MachineTypeBean getType() { return type; } public void setType(MachineTypeBean type) { this.type = type; } public Float getNum() { return num; } public void setNum(Float num) { this.num = num; } public Float getSubtotal() { return subtotal; } public void setSubtotal(Float subtotal) { this.subtotal = subtotal; } public Float getPrice() { return price; } public void setPrice(Float price) { this.price = price; } public String getBackDate() { return backDate; } public void setBackDate(String backDate) { this.backDate = backDate; } public String getStartDate() { return startDate; } public void setStartDate(String startDate) { this.startDate = startDate; } public String getEndDate() { return endDate; } public void setEndDate(String endDate) { this.endDate = endDate; } public Integer getDayLen() { return dayLen; } public void setDayLen(Integer dayLen) { this.dayLen = dayLen; } public MaTypeProjectStorageBean getStorage() { return storage; } public void setStorage(MaTypeProjectStorageBean storage) { this.storage = storage; } public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } @Override public String toString() { return "ProjectSettlementDetailsBean [id=" + id + ", sltInfo=" + sltInfo + ", costType=" + costType + ", type=" + type + ", num=" + num + ", subtotal=" + subtotal + ", price=" + price + ", backDate=" + backDate + ", startDate=" + startDate + ", endDate=" + endDate + ", dayLen=" + dayLen + ", storage=" + storage + "]"; } }