package com.matrix.system.shopXcx.bean;
|
|
import com.matrix.core.pojo.EntityDTO;
|
import com.matrix.core.anotations.Extend;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @description 杀
|
* @author wzy
|
* @date 2020-03-21 15:26
|
*/
|
public class ShopActivitiesSeckillInfo extends EntityDTO{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
|
/**
|
* 活动主表主键
|
*/
|
private Long actId;
|
|
|
/**
|
* 产品ID
|
*/
|
private Long goodsId;
|
|
|
/**
|
* 秒杀价
|
*/
|
private BigDecimal siPrice;
|
|
|
/**
|
* 最多秒杀数量
|
*/
|
private Integer siCount;
|
|
|
/**
|
* 每人限购
|
*/
|
private Integer siLimitCnt;
|
|
private Integer siRemainCnt;
|
|
private ShopProduct goods;
|
|
private Long companyId;
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id=id;
|
}
|
|
|
public Long getActId() {
|
return actId;
|
}
|
|
public void setActId(Long actId) {
|
this.actId=actId;
|
}
|
|
|
public Long getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(Long goodsId) {
|
this.goodsId=goodsId;
|
}
|
|
|
public BigDecimal getSiPrice() {
|
return siPrice;
|
}
|
|
public void setSiPrice(BigDecimal siPrice) {
|
this.siPrice=siPrice;
|
}
|
|
|
public Integer getSiCount() {
|
return siCount;
|
}
|
|
public void setSiCount(Integer siCount) {
|
this.siCount=siCount;
|
}
|
|
|
public Integer getSiLimitCnt() {
|
return siLimitCnt;
|
}
|
|
public void setSiLimitCnt(Integer siLimitCnt) {
|
this.siLimitCnt=siLimitCnt;
|
}
|
|
|
public ShopProduct getGoods() {
|
return goods;
|
}
|
|
public void setGoods(ShopProduct goods) {
|
this.goods = goods;
|
}
|
|
public Integer getSiRemainCnt() {
|
return siRemainCnt;
|
}
|
|
public void setSiRemainCnt(Integer siRemainCnt) {
|
this.siRemainCnt = siRemainCnt;
|
}
|
}
|