fwq
2022-07-22 3ce49a33f639f601e7259a9839a235647b90eac9
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.hz.phis.dt.shop;
 
import java.math.BigDecimal;
 
/**
 * 门店价格
 * @author fwq
 */
public class ShopPriceDt {
 
    private int type;
    private String shopId;
    private String commonId;
    private BigDecimal price;
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public String getShopId() {
        return shopId;
    }
 
    public void setShopId(String shopId) {
        this.shopId = shopId;
    }
 
    public String getCommonId() {
        return commonId;
    }
 
    public void setCommonId(String commonId) {
        this.commonId = commonId;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    /**类型-卡项*/
    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;
}