Commit f4ef5a7a by guojuxing

转账审批详情添加字段:商户名称和公司名称

parent 8ba01148
......@@ -86,6 +86,19 @@ public class TransferApprovalRechargeVO implements Serializable{
*
*/
private Date createTime;
/**
* 商户名称
*/
private String enterpriseName;
/**
* 公司名称
*/
private String companyName;
/**
* 到账金额
*/
private Double accountAmount;
public Integer getTransferApprovalId() {
return transferApprovalId;
......@@ -190,4 +203,28 @@ public class TransferApprovalRechargeVO implements Serializable{
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getEnterpriseName() {
return enterpriseName;
}
public void setEnterpriseName(String enterpriseName) {
this.enterpriseName = enterpriseName;
}
public String getCompanyName() {
return companyName;
}
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
public Double getAccountAmount() {
return accountAmount;
}
public void setAccountAmount(Double accountAmount) {
this.accountAmount = accountAmount;
}
}
......@@ -4,7 +4,6 @@ import java.io.Serializable;
import java.util.Date;
import com.gic.finance.constant.EnterprisePlatformTypeEnum;
import com.gic.finance.constant.InitiatorTypeEnum;
import com.gic.finance.constant.TransferAccountApprovalStatusEnum;
import com.gic.finance.web.utils.DateUtils;
......@@ -110,6 +109,19 @@ public class TransferApprovalSmsVO implements Serializable{
*
*/
private Date createTime;
/**
* 商户名称
*/
private String enterpriseName;
/**
* 公司名称
*/
private String companyName;
/**
* 到账金额
*/
private Double accountAmount;
public Integer getTransferApprovalId() {
return transferApprovalId;
......@@ -254,4 +266,28 @@ public class TransferApprovalSmsVO implements Serializable{
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getEnterpriseName() {
return enterpriseName;
}
public void setEnterpriseName(String enterpriseName) {
this.enterpriseName = enterpriseName;
}
public String getCompanyName() {
return companyName;
}
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
public Double getAccountAmount() {
return accountAmount;
}
public void setAccountAmount(Double accountAmount) {
this.accountAmount = accountAmount;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment