package cn.com.lzt.contractpayment.dto; import org.apache.commons.lang.StringUtils; import org.jeecgframework.minidao.annotation.MiniDao; import org.jeecgframework.poi.excel.annotation.Excel; @MiniDao public class ContractPaymentDto { private String id; // 0:单位账号1:个人账号 @Excel(name="收款人类型",width=19.83) private String accountSign; @Excel(name="收款账号",width=19.83) private String receiveAccountNo; @Excel(name="收款人名称",width=19.83) private String receiveAccountName; @Excel(name="交易金额",width=19.83) private Double amount; @Excel(name="付款用途",width=19.83) private String usefor; @Excel(name="用途备注",width=19.83) private String useforRemark;//用途备注 // 0:行内 1:行外 @Excel(name="转入银行",width=19.83) private String transferType; @Excel(name="收款行全称",width=19.83) private String receiveAcountBank; @Excel(name="收款行行号",width=19.83) private String receiveAcountBankNo;// 收款行行号 // 0:跨行汇款 1:同城票交 // if 行内,为空;if 行外,上海=1,非上海=0 @Excel(name="转账方式",width=19.83) private String payType; // 0:否 1:是 @Excel(name="是否加急",width=19.83) private String urgent; //=== // @Excel(name="付款账号",width=19.83) private String payAccountNo; // @Excel(name="客户号",width=19.83) private String payCustomerNo; // @Excel(name="付款账户名称",width=19.83) private String accountName; //01 人民币 // @Excel(name="币种",width=19.83) private String currency; // @Excel(name="联行号",width=19.83) private String bankLinkNo; public String getPayAccountNo() { return payAccountNo; } public void setPayAccountNo(String payAccountNo) { this.payAccountNo = payAccountNo; } public String getPayCustomerNo() { return payCustomerNo; } public void setPayCustomerNo(String payCustomerNo) { this.payCustomerNo = payCustomerNo; } public String getAccountName() { return accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public String getReceiveAccountNo() { return receiveAccountNo; } public void setReceiveAccountNo(String receiveAccountNo) { this.receiveAccountNo = receiveAccountNo; } public String getReceiveAccountName() { return receiveAccountName; } public void setReceiveAccountName(String receiveAccountName) { this.receiveAccountName = receiveAccountName; } public String getReceiveAcountBank() { return receiveAcountBank; } public void setReceiveAcountBank(String receiveAcountBank) { this.receiveAcountBank = receiveAcountBank; } public String getCurrency() { return currency; } public void setCurrency(String currency) { this.currency = currency; } public String getTransferType() { return transferType; } public void setTransferType(String transferType) { this.transferType = transferType; } public String getPayType() { return payType; } public void setPayType(String payType) { this.payType = payType; } public String getUrgent() { return urgent; } public void setUrgent(String urgent) { this.urgent = urgent; } public String getUsefor() { return usefor; } public void setUsefor(String usefor) { this.usefor = usefor; } public String getAccountSign() { return accountSign; } public void setAccountSign(String accountSign) { this.accountSign = accountSign; } public String getBankLinkNo() { return bankLinkNo; } public void setBankLinkNo(String bankLinkNo) { this.bankLinkNo = bankLinkNo; } public String getUseforRemark() { if(StringUtils.isBlank(useforRemark)) return ""; return useforRemark; } public void setUseforRemark(String useforRemark) { this.useforRemark = useforRemark; } public String getReceiveAcountBankNo() { if(StringUtils.isBlank(receiveAcountBankNo)) return ""; return receiveAcountBankNo; } public void setReceiveAcountBankNo(String receiveAcountBankNo) { this.receiveAcountBankNo = receiveAcountBankNo; } public String getId() { return id; } public void setId(String id) { this.id = id; } }