wuxw
2019-10-21 66ae553883a6811bc94e3c1fb5fc6254150ae678
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
package com.java110.vo.api.resourceStore;
 
import java.io.Serializable;
import java.util.Date;
 
public class ApiResourceStoreDataVo implements Serializable {
 
    private String resId;
    private String resName;
    private String resCode;
    private String price;
    private String stock;
    private String description;
 
    public String getResId() {
        return resId;
    }
 
    public void setResId(String resId) {
        this.resId = resId;
    }
 
    public String getResName() {
        return resName;
    }
 
    public void setResName(String resName) {
        this.resName = resName;
    }
 
    public String getResCode() {
        return resCode;
    }
 
    public void setResCode(String resCode) {
        this.resCode = resCode;
    }
 
    public String getPrice() {
        return price;
    }
 
    public void setPrice(String price) {
        this.price = price;
    }
 
    public String getStock() {
        return stock;
    }
 
    public void setStock(String stock) {
        this.stock = stock;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
 
}