fwq
2024-04-23 bdd39fac56c367b36d6c41ef2cd5c9f35926013f
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
package com.hz.phis.dt.limit;
 
import lombok.Data;
 
/**
 * 限制
 * @author fwq
 */
@Data
public class LimitUpdateDt {
    private String id;
    private String foreignKey;
    private Integer type;
 
    /**类型-卡项*/
    public static final Integer LIMIT_CARD_ITEM = 0;
    /**类型-促销*/
    public static final Integer LIMIT_PROMOTION = 1;
    /**类型-项目*/
    public static final Integer LIMIT_PROJECT = 2;
    /**类型-商品(耗材)*/
    public static final Integer LIMIT_CONSUMABLE = 3;
    /**类型-SPU*/
    public static final Integer LIMIT_SPU = 4;
    /**类型-活动规则类*/
    public static final Integer LIMIT_ACTIVITY = 5;
}