mrzcc
2020-03-06 ed51ebeaba18e9986ed94928d75e5a7438af2af4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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 state;
    private String userName;
    private String stateName;
    //申请时间
    private Date createTime;
    //物品名称是
    private String resourceNames;
    //累计价格
    private String totalPrice;
    private List<PurchaseApplyDetailVo> purchaseApplyDetailVo;
 
 
    public String getApplyOrderId() {
        return applyOrderId;
    }
 
    public void setApplyOrderId(String applyOrderId) {
        this.applyOrderId = applyOrderId;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getResourceNames() {
        return resourceNames;
    }
 
    public void setResourceNames(String resourceNames) {
        this.resourceNames = resourceNames;
    }
 
    public String getTotalPrice() {
        return totalPrice;
    }
 
    public void setTotalPrice(String totalPrice) {
        this.totalPrice = totalPrice;
    }
 
    public List<PurchaseApplyDetailVo> getPurchaseApplyDetailVo() {
        return purchaseApplyDetailVo;
    }
 
    public void setPurchaseApplyDetailVo(List<PurchaseApplyDetailVo> purchaseApplyDetailVo) {
        this.purchaseApplyDetailVo = purchaseApplyDetailVo;
    }
 
    public String getStateName() {
        return stateName;
    }
 
    public void setStateName(String stateName) {
        this.stateName = stateName;
    }
}