Commit 42053990 by guojuxing

转账审批列表添加字段:审批类型

parent f4ef5a7a
...@@ -100,6 +100,10 @@ public class TransferApprovalListVO implements Serializable{ ...@@ -100,6 +100,10 @@ public class TransferApprovalListVO implements Serializable{
* *
*/ */
private Date createTime; private Date createTime;
/**
* 1:套餐包 2:拓展包 3:服务 4:短信套餐包 5:充值
*/
private Integer orderType;
public Integer getTransferApprovalId() { public Integer getTransferApprovalId() {
return transferApprovalId; return transferApprovalId;
...@@ -220,4 +224,12 @@ public class TransferApprovalListVO implements Serializable{ ...@@ -220,4 +224,12 @@ public class TransferApprovalListVO implements Serializable{
public void setCreateTime(Date createTime) { public void setCreateTime(Date createTime) {
this.createTime = createTime; this.createTime = createTime;
} }
public Integer getOrderType() {
return orderType;
}
public void setOrderType(Integer orderType) {
this.orderType = orderType;
}
} }
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