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 ShopActivitiesGroupPrice extends EntityDTO{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
|
/**
|
* 活动主表主键
|
*/
|
private Long actId;
|
|
|
/**
|
* 拼团信息主表
|
*/
|
private Long gpId;
|
|
|
/**
|
* 拼团人数
|
*/
|
private Integer gpCount;
|
|
|
/**
|
* 拼团价
|
*/
|
private BigDecimal gpPrice;
|
|
|
/**
|
* 团长价
|
*/
|
private BigDecimal gpHeadPrice;
|
|
private int seq;
|
|
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 getGpId() {
|
return gpId;
|
}
|
|
public void setGpId(Long gpId) {
|
this.gpId=gpId;
|
}
|
|
|
public Integer getGpCount() {
|
return gpCount;
|
}
|
|
public void setGpCount(Integer gpCount) {
|
this.gpCount=gpCount;
|
}
|
|
|
public BigDecimal getGpPrice() {
|
return gpPrice;
|
}
|
|
public void setGpPrice(BigDecimal gpPrice) {
|
this.gpPrice=gpPrice;
|
}
|
|
|
public BigDecimal getGpHeadPrice() {
|
return gpHeadPrice;
|
}
|
|
public void setGpHeadPrice(BigDecimal gpHeadPrice) {
|
this.gpHeadPrice=gpHeadPrice;
|
}
|
|
|
public int getSeq() {
|
return seq;
|
}
|
|
public void setSeq(int seq) {
|
this.seq = seq;
|
}
|
}
|