提交 | 用户 | age
|
7c680b
|
1 |
package com.hz.phis.dt.user.coupon; |
C |
2 |
|
|
3 |
|
|
4 |
import com.hz.his.dto.PageDto; |
|
5 |
|
|
6 |
/**用户可用优惠券扩展*/ |
|
7 |
public class HisGoodsDt extends PageDto { |
|
8 |
/**用户标识*/ |
|
9 |
private String hisId; |
|
10 |
/**hisType*/ |
|
11 |
private String hisType; |
|
12 |
|
|
13 |
|
|
14 |
/**类型-项目*/ |
|
15 |
public static final String TYPE_PROJECT = "project"; |
|
16 |
/**类型-商品/药品*/ |
|
17 |
public static final String TYPE_RETAIL = "retail"; |
|
18 |
/**类型-卡项*/ |
|
19 |
public static final String TYPE_CARD = "card"; |
|
20 |
/**类型-促销*/ |
|
21 |
public static final String TYPE_PROMOTION = "promotion"; |
|
22 |
/**类型-增值金*/ |
|
23 |
public static final String TYPE_INCREMENT = "increment"; |
|
24 |
/**类型-储值金*/ |
|
25 |
public static final String TYPE_STORED = "stored"; |
|
26 |
/**类型-积分*/ |
|
27 |
public static final String TYPE_INTEGRAL = "integral"; |
|
28 |
/**类型-团购商品*/ |
|
29 |
public static final String TYPE_COMMODITY = "commodity"; |
|
30 |
/**类型-积分商品*/ |
|
31 |
public static final String TYPE_GOODS_INTEGRAL = "goods_integral"; |
|
32 |
|
|
33 |
public String getHisId() { |
|
34 |
return hisId; |
|
35 |
} |
|
36 |
|
|
37 |
public void setHisId(String hisId) { |
|
38 |
this.hisId = hisId; |
|
39 |
} |
|
40 |
|
|
41 |
public String getHisType() { |
|
42 |
return hisType; |
|
43 |
} |
|
44 |
|
|
45 |
public void setHisType(String hisType) { |
|
46 |
this.hisType = hisType; |
|
47 |
} |
|
48 |
} |