提交 | 用户 | age
|
3ce49a
|
1 |
package com.hz.phis.dt.limit; |
F |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
/** |
|
6 |
* 限制 |
|
7 |
* @author fwq |
|
8 |
*/ |
|
9 |
@Data |
|
10 |
public class LimitUpdateDt { |
|
11 |
private String id; |
|
12 |
private String foreignKey; |
|
13 |
private Integer type; |
|
14 |
|
|
15 |
/**类型-卡项*/ |
|
16 |
public static final Integer LIMIT_CARD_ITEM = 0; |
|
17 |
/**类型-促销*/ |
|
18 |
public static final Integer LIMIT_PROMOTION = 1; |
|
19 |
/**类型-项目*/ |
|
20 |
public static final Integer LIMIT_PROJECT = 2; |
|
21 |
/**类型-商品(耗材)*/ |
|
22 |
public static final Integer LIMIT_CONSUMABLE = 3; |
|
23 |
/**类型-SPU*/ |
|
24 |
public static final Integer LIMIT_SPU = 4; |
|
25 |
/**类型-活动规则类*/ |
|
26 |
public static final Integer LIMIT_ACTIVITY = 5; |
|
27 |
} |