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
28
29
30
31
32
33
package com.hz.phis.dt.limit;
 
import lombok.Data;
 
/**
 * 其他限制
 * @author fwq
 */
 
@Data
public class LimitOtherDt {
    /**限制标识*/
    private String id;
    /**公共标识(星座/门店/其他)*/
    private String commonId;
    /**公共名称*/
    private String commonName;
    /**类型*/
    private Integer type;
    /**限制总标识*/
    private String limitTotalId;
 
    /**星座*/
    public static final Integer TYPE_STAR = 0;
    /**门店*/
    public static final Integer TYPE_SHOP = 1;
    /**渠道*/
    public static final Integer TYPE_CHANNEL = 2;
    /**标签*/
    public static final Integer TYPE_LABEL = 3;
    /**支付方式*/
    public static final Integer TYPE_PAY_METHOD = 4;
}