wangrenhuang
2022-07-14 578588fefc6f546cd589b77dfd8444708482080f
提交 | 用户 | age
7c680b 1 package com.hz.phis.dt.promotion;
C 2
3 public class PromotionGoodsDt {
4
5     /**标识*/
6     private String id;
7     /**类型-商品类型:project(项目),retail(商品),increment(增值金),stored(储值金),integral(积分)*/
8     private String type;
9     /**名称*/
10     private String commonName;
11     /**数量*/
12     private String num;
13     /**商品价格(元)/储值金(元)/增值金(元)/积分*/
14     private String price;
15
16     public String getId() {
17         return id;
18     }
19
20     public void setId(String id) {
21         this.id = id;
22     }
23
24     public String getType() {
25         return type;
26     }
27
28     public void setType(String type) {
29         this.type = type;
30     }
31
32     public String getCommonName() {
33         return commonName;
34     }
35
36     public void setCommonName(String commonName) {
37         this.commonName = commonName;
38     }
39
40     public String getNum() {
41         return num;
42     }
43
44     public void setNum(String num) {
45         this.num = num;
46     }
47
48     public String getPrice() {
49         return price;
50     }
51
52     public void setPrice(String price) {
53         this.price = price;
54     }
55 }