115 lines
2.0 KiB
Plaintext
115 lines
2.0 KiB
Plaintext
package com.bonus.lease.beans;
|
|
|
|
public class AgreementDetailsBean {
|
|
|
|
private String id;
|
|
private String taskId;
|
|
private String typeId;
|
|
private String machineType;
|
|
private String model;
|
|
private String machineNums;
|
|
private String buyPrice;
|
|
private String leasePrice;
|
|
private String payPrice;
|
|
|
|
private String batchStatus;
|
|
|
|
private String keyWord;
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getTaskId() {
|
|
return taskId;
|
|
}
|
|
|
|
public void setTaskId(String taskId) {
|
|
this.taskId = taskId;
|
|
}
|
|
|
|
public String getTypeId() {
|
|
return typeId;
|
|
}
|
|
|
|
public void setTypeId(String typeId) {
|
|
this.typeId = typeId;
|
|
}
|
|
|
|
public String getMachineType() {
|
|
return machineType;
|
|
}
|
|
|
|
public void setMachineType(String machineType) {
|
|
this.machineType = machineType;
|
|
}
|
|
|
|
public String getModel() {
|
|
return model;
|
|
}
|
|
|
|
public void setModel(String model) {
|
|
this.model = model;
|
|
}
|
|
|
|
public String getMachineNums() {
|
|
return machineNums;
|
|
}
|
|
|
|
public void setMachineNums(String machineNums) {
|
|
this.machineNums = machineNums;
|
|
}
|
|
|
|
public String getBuyPrice() {
|
|
return buyPrice;
|
|
}
|
|
|
|
public void setBuyPrice(String buyPrice) {
|
|
this.buyPrice = buyPrice;
|
|
}
|
|
|
|
public String getLeasePrice() {
|
|
return leasePrice;
|
|
}
|
|
|
|
public void setLeasePrice(String leasePrice) {
|
|
this.leasePrice = leasePrice;
|
|
}
|
|
|
|
public String getPayPrice() {
|
|
return payPrice;
|
|
}
|
|
|
|
public void setPayPrice(String payPrice) {
|
|
this.payPrice = payPrice;
|
|
}
|
|
|
|
public String getBatchStatus() {
|
|
return batchStatus;
|
|
}
|
|
|
|
public void setBatchStatus(String batchStatus) {
|
|
this.batchStatus = batchStatus;
|
|
}
|
|
|
|
public String getKeyWord() {
|
|
return keyWord;
|
|
}
|
|
|
|
public void setKeyWord(String keyWord) {
|
|
this.keyWord = keyWord;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "AgreementDetailsBean [id=" + id + ", taskId=" + taskId + ", machineType=" + machineType + ", model="
|
|
+ model + ", machineNums=" + machineNums + ", buyPrice=" + buyPrice + ", leasePrice=" + leasePrice
|
|
+ ", payPrice=" + payPrice + ", keyWord=" + keyWord + "]";
|
|
}
|
|
|
|
}
|