曾成
2020-04-14 a349e02a00fc2370dd924b17a338472a6bd6927f
java110-bean/src/main/java/com/java110/vo/api/purchaseApply/ApiPurchaseApplyDataVo.java
@@ -1,17 +1,17 @@
package com.java110.vo.api.purchaseApply;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
public class ApiPurchaseApplyDataVo implements Serializable {
    private String applyOrderId;
    private String resOrderType;
    private String state;
    private String userName;
    private String stateName;
    //申请时间
    private Date createTime;
    private String createTime;
    //物品名称是
    private String resourceNames;
    //累计价格
@@ -44,11 +44,11 @@
        this.userName = userName;
    }
    public Date getCreateTime() {
    public String getCreateTime() {
        return createTime;
    }
    public void setCreateTime(Date createTime) {
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
@@ -91,4 +91,12 @@
    public void setDescription(String description) {
        this.description = description;
    }
    public String getResOrderType() {
        return resOrderType;
    }
    public void setResOrderType(String resOrderType) {
        this.resOrderType = resOrderType;
    }
}