ANDRU-PC\Andru
2023-04-28 e93c9f01602db64a7d75a0aec1ec6fdadebc49f9
提交 | 用户 | age
3ce49a 1 package com.hz.phis.dt.shop;
F 2
3 import java.math.BigDecimal;
4
5 /**
6  * 门店价格
7  * @author fwq
8  */
9 public class ShopPriceDt {
10
11     private int type;
12     private String shopId;
13     private String commonId;
14     private BigDecimal price;
15
16     public int getType() {
17         return type;
18     }
19
20     public void setType(int type) {
21         this.type = type;
22     }
23
24     public String getShopId() {
25         return shopId;
26     }
27
28     public void setShopId(String shopId) {
29         this.shopId = shopId;
30     }
31
32     public String getCommonId() {
33         return commonId;
34     }
35
36     public void setCommonId(String commonId) {
37         this.commonId = commonId;
38     }
39
40     public BigDecimal getPrice() {
41         return price;
42     }
43
44     public void setPrice(BigDecimal price) {
45         this.price = price;
46     }
47
48     /**类型-卡项*/
49     public static final Integer LIMIT_CARD_ITEM = 0;
50     /**类型-促销*/
51     public static final Integer LIMIT_PROMOTION = 1;
52     /**类型-项目*/
53     public static final Integer LIMIT_PROJECT = 2;
54     /**类型-商品(耗材)*/
55     public static final Integer LIMIT_CONSUMABLE = 3;
56     /**类型-SPU*/
57     public static final Integer LIMIT_SPU = 4;
58 }