88 lines
1.7 KiB
Java
88 lines
1.7 KiB
Java
|
|
package org.chenyon.discharge;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public class DisChargeApplyVo {
|
||
|
|
private String contractNo;
|
||
|
|
private String contractName;
|
||
|
|
private List<String> assetsNoList;
|
||
|
|
private String reason;
|
||
|
|
private String dischargeDate;
|
||
|
|
private String cusNo;
|
||
|
|
private String cusName;
|
||
|
|
private String cusType;
|
||
|
|
private String phone;
|
||
|
|
|
||
|
|
public String getContractNo() {
|
||
|
|
return contractNo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setContractNo(String contractNo) {
|
||
|
|
this.contractNo = contractNo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public List<String> getAssetsNoList() {
|
||
|
|
return assetsNoList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setAssetsNoList(List<String> assetsNoList) {
|
||
|
|
this.assetsNoList = assetsNoList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getReason() {
|
||
|
|
return reason;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setReason(String reason) {
|
||
|
|
this.reason = reason;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getDischargeDate() {
|
||
|
|
return dischargeDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDischargeDate(String dischargeDate) {
|
||
|
|
this.dischargeDate = dischargeDate;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCusNo() {
|
||
|
|
return cusNo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCusNo(String cusNo) {
|
||
|
|
this.cusNo = cusNo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getContractName() {
|
||
|
|
return contractName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setContractName(String contractName) {
|
||
|
|
this.contractName = contractName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCusName() {
|
||
|
|
return cusName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCusName(String cusName) {
|
||
|
|
this.cusName = cusName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCusType() {
|
||
|
|
return cusType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCusType(String cusType) {
|
||
|
|
this.cusType = cusType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getPhone() {
|
||
|
|
return phone;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPhone(String phone) {
|
||
|
|
this.phone = phone;
|
||
|
|
}
|
||
|
|
}
|