fwq
2024-04-23 bdd39fac56c367b36d6c41ef2cd5c9f35926013f
提交 | 用户 | age
3ce49a 1 package com.hz.phis.dt.limit;
F 2
3 import lombok.Data;
4
5 /**
6  * 其他限制
7  * @author fwq
8  */
9
10 @Data
11 public class LimitOtherDt {
12     /**限制标识*/
13     private String id;
14     /**公共标识(星座/门店/其他)*/
15     private String commonId;
16     /**公共名称*/
17     private String commonName;
18     /**类型*/
19     private Integer type;
20     /**限制总标识*/
21     private String limitTotalId;
22
23     /**星座*/
24     public static final Integer TYPE_STAR = 0;
25     /**门店*/
26     public static final Integer TYPE_SHOP = 1;
27     /**渠道*/
28     public static final Integer TYPE_CHANNEL = 2;
29     /**标签*/
30     public static final Integer TYPE_LABEL = 3;
31     /**支付方式*/
32     public static final Integer TYPE_PAY_METHOD = 4;
33 }