chenjiahe
2022-07-13 7c680b3e59d8b46fa4797f283101476917fa44c6
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
package com.hz.phis.dt.promotion;
 
public class PromotionGoodsDt {
 
    /**标识*/
    private String id;
    /**类型-商品类型:project(项目),retail(商品),increment(增值金),stored(储值金),integral(积分)*/
    private String type;
    /**名称*/
    private String commonName;
    /**数量*/
    private String num;
    /**商品价格(元)/储值金(元)/增值金(元)/积分*/
    private String price;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getCommonName() {
        return commonName;
    }
 
    public void setCommonName(String commonName) {
        this.commonName = commonName;
    }
 
    public String getNum() {
        return num;
    }
 
    public void setNum(String num) {
        this.num = num;
    }
 
    public String getPrice() {
        return price;
    }
 
    public void setPrice(String price) {
        this.price = price;
    }
}