Commit e6777ade by guojuxing

财务审批详情添加订单流水号字段

parent 5d1e4ec5
...@@ -104,6 +104,11 @@ public class TransferApprovalRechargeVO implements Serializable{ ...@@ -104,6 +104,11 @@ public class TransferApprovalRechargeVO implements Serializable{
*/ */
private Double totalCountFee; private Double totalCountFee;
/**
* 订单流水号
*/
private String orderNumber;
public Integer getTransferApprovalId() { public Integer getTransferApprovalId() {
return transferApprovalId; return transferApprovalId;
} }
...@@ -239,4 +244,13 @@ public class TransferApprovalRechargeVO implements Serializable{ ...@@ -239,4 +244,13 @@ public class TransferApprovalRechargeVO implements Serializable{
public void setTotalCountFee(Double totalCountFee) { public void setTotalCountFee(Double totalCountFee) {
this.totalCountFee = totalCountFee; this.totalCountFee = totalCountFee;
} }
public String getOrderNumber() {
return orderNumber;
}
public TransferApprovalRechargeVO setOrderNumber(String orderNumber) {
this.orderNumber = orderNumber;
return this;
}
} }
...@@ -128,6 +128,11 @@ public class TransferApprovalSmsVO implements Serializable{ ...@@ -128,6 +128,11 @@ public class TransferApprovalSmsVO implements Serializable{
*/ */
private Double totalCountFee; private Double totalCountFee;
/**
* 订单流水号
*/
private String orderNumber;
public Integer getTransferApprovalId() { public Integer getTransferApprovalId() {
return transferApprovalId; return transferApprovalId;
} }
...@@ -303,4 +308,13 @@ public class TransferApprovalSmsVO implements Serializable{ ...@@ -303,4 +308,13 @@ public class TransferApprovalSmsVO implements Serializable{
public void setTotalCountFee(Double totalCountFee) { public void setTotalCountFee(Double totalCountFee) {
this.totalCountFee = totalCountFee; this.totalCountFee = totalCountFee;
} }
public String getOrderNumber() {
return orderNumber;
}
public TransferApprovalSmsVO setOrderNumber(String orderNumber) {
this.orderNumber = orderNumber;
return this;
}
} }
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