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;
|
}
|