123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- package com.kmall.admin.entity;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * 商品历史价格表实体
- * 表名 mall_goods_history_price
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2020-06-13 12:29:09
- */
- public class GoodsHistoryPriceEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 编号
- */
- private Integer id;
- /**
- * 商品编码
- */
- private String goodsSn;
- /**
- * sku
- */
- private String sku;
- /**
- * PLU
- */
- private String plu;
- /**
- * 第三方商户编号,主键编号
- */
- private Integer thirdMerchSn;
- /**
- * 商户编号
- */
- private String merchSn;
- /**
- * 门店编号
- */
- private String storeNumber;
- /**
- * 批次编号
- */
- private String batchSn;
- /**
- * 日常价
- */
- private BigDecimal dailyPrice;
- /**
- * 活动价
- */
- private BigDecimal activeityPrice;
- /**
- * 价格时间
- */
- private Date priceTime;
- /**
- * 价格日期
- */
- private Date retailPriceDate;
- /**
- * +创建人编号
- */
- private String createrSn;
- /**
- * +创建时间,yyyy-MM-dd HH:mm:ss
- */
- private Date createTime;
- /**
- * +修改人编号
- */
- private String moderSn;
- /**
- * +修改时间,yyyy-MM-dd HH:mm:ss
- */
- private Date modTime;
- /**
- * +时间戳
- */
- private Date tstm;
- /**
- * 设置:编号
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * 获取:编号
- */
- public Integer getId() {
- return id;
- }
- /**
- * 设置:商品编码
- */
- public void setGoodsSn(String goodsSn) {
- this.goodsSn = goodsSn;
- }
- /**
- * 获取:商品编码
- */
- public String getGoodsSn() {
- return goodsSn;
- }
- /**
- * 设置:sku
- */
- public void setSku(String sku) {
- this.sku = sku;
- }
- /**
- * 获取:sku
- */
- public String getSku() {
- return sku;
- }
- /**
- * 设置:PLU
- */
- public void setPlu(String plu) {
- this.plu = plu;
- }
- /**
- * 获取:PLU
- */
- public String getPlu() {
- return plu;
- }
- /**
- * 设置:第三方商户编号,主键编号
- */
- public void setThirdMerchSn(Integer thirdMerchSn) {
- this.thirdMerchSn = thirdMerchSn;
- }
- /**
- * 获取:第三方商户编号,主键编号
- */
- public Integer getThirdMerchSn() {
- return thirdMerchSn;
- }
- /**
- * 设置:商户编号
- */
- public void setMerchSn(String merchSn) {
- this.merchSn = merchSn;
- }
- /**
- * 获取:商户编号
- */
- public String getMerchSn() {
- return merchSn;
- }
- /**
- * 设置:门店编号
- */
- public void setStoreNumber(String storeNumber) {
- this.storeNumber = storeNumber;
- }
- /**
- * 获取:门店编号
- */
- public String getStoreNumber() {
- return storeNumber;
- }
- /**
- * 设置:批次编号
- */
- public void setBatchSn(String batchSn) {
- this.batchSn = batchSn;
- }
- /**
- * 获取:批次编号
- */
- public String getBatchSn() {
- return batchSn;
- }
- /**
- * 设置:日常价
- */
- public void setDailyPrice(BigDecimal dailyPrice) {
- this.dailyPrice = dailyPrice;
- }
- /**
- * 获取:日常价
- */
- public BigDecimal getDailyPrice() {
- return dailyPrice;
- }
- /**
- * 设置:活动价
- */
- public void setActiveityPrice(BigDecimal activeityPrice) {
- this.activeityPrice = activeityPrice;
- }
- /**
- * 获取:活动价
- */
- public BigDecimal getActiveityPrice() {
- return activeityPrice;
- }
- /**
- * 设置:价格时间
- */
- public void setPriceTime(Date priceTime) {
- this.priceTime = priceTime;
- }
- /**
- * 获取:价格时间
- */
- public Date getPriceTime() {
- return priceTime;
- }
- /**
- * 设置:价格日期
- */
- public void setRetailPriceDate(Date retailPriceDate) {
- this.retailPriceDate = retailPriceDate;
- }
- /**
- * 获取:价格日期
- */
- public Date getRetailPriceDate() {
- return retailPriceDate;
- }
- /**
- * 设置:+创建人编号
- */
- public void setCreaterSn(String createrSn) {
- this.createrSn = createrSn;
- }
- /**
- * 获取:+创建人编号
- */
- public String getCreaterSn() {
- return createrSn;
- }
- /**
- * 设置:+创建时间,yyyy-MM-dd HH:mm:ss
- */
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- /**
- * 获取:+创建时间,yyyy-MM-dd HH:mm:ss
- */
- public Date getCreateTime() {
- return createTime;
- }
- /**
- * 设置:+修改人编号
- */
- public void setModerSn(String moderSn) {
- this.moderSn = moderSn;
- }
- /**
- * 获取:+修改人编号
- */
- public String getModerSn() {
- return moderSn;
- }
- /**
- * 设置:+修改时间,yyyy-MM-dd HH:mm:ss
- */
- public void setModTime(Date modTime) {
- this.modTime = modTime;
- }
- /**
- * 获取:+修改时间,yyyy-MM-dd HH:mm:ss
- */
- public Date getModTime() {
- return modTime;
- }
- /**
- * 设置:+时间戳
- */
- public void setTstm(Date tstm) {
- this.tstm = tstm;
- }
- /**
- * 获取:+时间戳
- */
- public Date getTstm() {
- return tstm;
- }
- }
|