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 @Data
10 public class LimitMemberDt {
11     /**限制标识*/
12     private String id;
13     /**限制编码*/
14     private String code;
15     /**类型*/
16     private Integer type;
17     /**外键id*/
18     private String foreignKey;
19     /**会员标识*/
20     private String memberId;
21     /**限制总标识*/
22     private String limitTotalId;
23
24     /**类型-卡项*/
25     public static final Integer LIMIT_CARD_ITEM = 0;
26     /**类型-促销*/
27     public static final Integer LIMIT_PROMOTION = 1;
28     /**类型-项目*/
29     public static final Integer LIMIT_PROJECT = 2;
30     /**类型-商品(耗材)*/
31     public static final Integer LIMIT_CONSUMABLE = 3;
32 }