91 lines
1.8 KiB
Plaintext
91 lines
1.8 KiB
Plaintext
package com.bonus.settlement.beans;
|
|
|
|
public class SettlementMoneyBean {
|
|
|
|
private String agreementId;
|
|
private String typeId;
|
|
private String leasePrice;
|
|
private String num;
|
|
private String nums;
|
|
private String startTime;
|
|
private String endTime;
|
|
private String money;
|
|
private String type;
|
|
private String batch;
|
|
private String isSure;
|
|
private String isSettlement;
|
|
public String getAgreementId() {
|
|
return agreementId;
|
|
}
|
|
public void setAgreementId(String agreementId) {
|
|
this.agreementId = agreementId;
|
|
}
|
|
public String getTypeId() {
|
|
return typeId;
|
|
}
|
|
public void setTypeId(String typeId) {
|
|
this.typeId = typeId;
|
|
}
|
|
public String getLeasePrice() {
|
|
return leasePrice;
|
|
}
|
|
public void setLeasePrice(String leasePrice) {
|
|
this.leasePrice = leasePrice;
|
|
}
|
|
public String getNum() {
|
|
return num;
|
|
}
|
|
public void setNum(String num) {
|
|
this.num = num;
|
|
}
|
|
public String getNums() {
|
|
return nums;
|
|
}
|
|
public void setNums(String nums) {
|
|
this.nums = nums;
|
|
}
|
|
public String getStartTime() {
|
|
return startTime;
|
|
}
|
|
public void setStartTime(String startTime) {
|
|
this.startTime = startTime;
|
|
}
|
|
public String getEndTime() {
|
|
return endTime;
|
|
}
|
|
public void setEndTime(String endTime) {
|
|
this.endTime = endTime;
|
|
}
|
|
public String getMoney() {
|
|
return money;
|
|
}
|
|
public void setMoney(String money) {
|
|
this.money = money;
|
|
}
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
public String getBatch() {
|
|
return batch;
|
|
}
|
|
public void setBatch(String batch) {
|
|
this.batch = batch;
|
|
}
|
|
public String getIsSure() {
|
|
return isSure;
|
|
}
|
|
public void setIsSure(String isSure) {
|
|
this.isSure = isSure;
|
|
}
|
|
public String getIsSettlement() {
|
|
return isSettlement;
|
|
}
|
|
public void setIsSettlement(String isSettlement) {
|
|
this.isSettlement = isSettlement;
|
|
}
|
|
|
|
}
|