package com.matrix.system.shopXcx.bean;
|
|
import com.matrix.core.pojo.EntityDTO;
|
import com.matrix.core.anotations.Extend;
|
|
import java.util.List;
|
|
/**
|
* @description 拼团表
|
* @author wzy
|
* @date 2020-03-21 15:26
|
*/
|
public class ShopActivitiesGroupInfo extends EntityDTO{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 拼团类型 老带新
|
*/
|
public static final int GROUP_TYPE_OLD_AND_NEW = 1;
|
|
/**
|
* 拼团类型 老用户
|
*/
|
public static final int GROUP_TYPE_ALL_OLD = 2;
|
|
/**
|
* 拼团类型 新用户
|
*/
|
public static final int GROUP_TYPE_ALL_NEW = 3;
|
|
/**
|
* 是否虚拟成团 是
|
*/
|
public static final int GROUP_VIRTUAL_Y = 1;
|
|
/**
|
* 是否虚拟成团 否
|
*/
|
public static final int GROUP_VIRTUAL_N = 2;
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
|
/**
|
* 活动主表主键
|
*/
|
private Long actId;
|
|
|
/**
|
* 产品Id
|
*/
|
private Long goodsId;
|
|
|
/**
|
* 组团要求
|
*/
|
private Integer giType;
|
|
|
/**
|
* 团长优惠
|
*/
|
private Integer giHeadDiscount;
|
|
|
/**
|
* 限购
|
*/
|
private Integer giLimitBuy;
|
|
private Integer giVirtualGroup;
|
|
private String goodsName;
|
|
private Long companyId;
|
|
private List<ShopActivitiesGroupPrice> groupPriceList;
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
public String getGoodsName() {
|
return goodsName;
|
}
|
|
public void setGoodsName(String goodsName) {
|
this.goodsName = goodsName;
|
}
|
|
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 Integer getGiType() {
|
return giType;
|
}
|
|
public void setGiType(Integer giType) {
|
this.giType=giType;
|
}
|
|
|
public Integer getGiHeadDiscount() {
|
return giHeadDiscount;
|
}
|
|
public void setGiHeadDiscount(Integer giHeadDiscount) {
|
this.giHeadDiscount=giHeadDiscount;
|
}
|
|
|
public Integer getGiLimitBuy() {
|
return giLimitBuy;
|
}
|
|
public void setGiLimitBuy(Integer giLimitBuy) {
|
this.giLimitBuy=giLimitBuy;
|
}
|
|
public Integer getGiVirtualGroup() {
|
return giVirtualGroup;
|
}
|
|
public void setGiVirtualGroup(Integer giVirtualGroup) {
|
this.giVirtualGroup = giVirtualGroup;
|
}
|
|
public List<ShopActivitiesGroupPrice> getGroupPriceList() {
|
return groupPriceList;
|
}
|
|
public void setGroupPriceList(List<ShopActivitiesGroupPrice> groupPriceList) {
|
this.groupPriceList = groupPriceList;
|
}
|
}
|