Commit 0b886015 by guojuxing

转账审批列表添加审批创建时间字段

parent a9437629
......@@ -404,5 +404,8 @@
<if test="platformType != null">
and platform_type = #{platformType}
</if>
<if test="invoiceType != null">
and invoice_type = #{invoiceType}
</if>
</select>
</mapper>
\ No newline at end of file
......@@ -95,6 +95,10 @@ public class TransferApprovalListVO implements Serializable{
* 审批时间
*/
private Date approvalTime;
/**
*
*/
private Date createTime;
public Integer getTransferApprovalId() {
return transferApprovalId;
......@@ -207,4 +211,12 @@ public class TransferApprovalListVO implements Serializable{
public void setApprovalTime(Date approvalTime) {
this.approvalTime = approvalTime;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
}
......@@ -81,6 +81,10 @@ public class TransferApprovalRechargeVO implements Serializable{
* 支付流水号
*/
private String payInfoSerialNumber;
/**
*
*/
private Date createTime;
public Integer getTransferApprovalId() {
return transferApprovalId;
......@@ -177,4 +181,12 @@ public class TransferApprovalRechargeVO implements Serializable{
public void setPayInfoSerialNumber(String payInfoSerialNumber) {
this.payInfoSerialNumber = payInfoSerialNumber;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
}
......@@ -105,6 +105,10 @@ public class TransferApprovalSmsVO implements Serializable{
* 实付金额
*/
private Double totalFeePaid;
/**
*
*/
private Date createTime;
public Integer getTransferApprovalId() {
return transferApprovalId;
......@@ -241,4 +245,12 @@ public class TransferApprovalSmsVO implements Serializable{
public void setTotalFeePaid(Double totalFeePaid) {
this.totalFeePaid = totalFeePaid;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
}
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