package com.matrix.system.shopXcx.bean;
|
|
import com.matrix.core.pojo.EntityDTO;
|
import com.matrix.core.anotations.Extend;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @description 记录
|
* @author wzy
|
* @date 2020-03-21 15:26
|
*/
|
public class ShopActivitiesGroupJoin extends EntityDTO{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 团长开团后等待付款
|
*/
|
public static final int ACTIVITIES_JOIN_WAIT_PAY = 4;
|
|
/**
|
* 拼团进行中
|
*/
|
public static final int ACTIVITIES_JOIN_ING = 3;
|
|
/**
|
* 拼团失败
|
*/
|
public static final int ACTIVITIES_JOIN_FAIL = 2;
|
|
/**
|
* 拼团成功
|
*/
|
public static final int ACTIVITIES_JOIN_SUCCESS = 1;
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
|
/**
|
* 活动主表主键
|
*/
|
private Long actId;
|
|
|
/**
|
* 拼团信息主键
|
*/
|
private Long giId;
|
|
|
/**
|
* 拼团号
|
*/
|
private Integer gjNo;
|
|
|
/**
|
* 开团时间
|
*/
|
private Date gjBeginTime;
|
|
|
/**
|
* 最晚结束时间
|
*/
|
private Date gjEndTime;
|
|
|
/**
|
* 拼团状态
|
*/
|
private Integer gjStatus;
|
|
|
/**
|
* 团长ID
|
*/
|
private Long gjHeadId;
|
|
private String headName;
|
|
private Long gpId;
|
|
private Long remainingTime;
|
|
private String avatarUrl;
|
|
private Integer theLast;
|
|
private boolean hasChildren = true;
|
|
List<ShopActivitiesGroupJoinUser> joinUserList;
|
|
private ShopActivitiesGroupPrice groupPrice;
|
private Long companyId;
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
public Integer getTheLast() {
|
return theLast;
|
}
|
|
public void setTheLast(Integer theLast) {
|
this.theLast = theLast;
|
}
|
|
public Long getRemainingTime() {
|
return remainingTime;
|
}
|
|
public void setRemainingTime(Long remainingTime) {
|
this.remainingTime = remainingTime;
|
}
|
|
public ShopActivitiesGroupPrice getGroupPrice() {
|
return groupPrice;
|
}
|
|
public void setGroupPrice(ShopActivitiesGroupPrice groupPrice) {
|
this.groupPrice = groupPrice;
|
}
|
|
public String getAvatarUrl() {
|
return avatarUrl;
|
}
|
|
public void setAvatarUrl(String avatarUrl) {
|
this.avatarUrl = avatarUrl;
|
}
|
|
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 getGiId() {
|
return giId;
|
}
|
|
public void setGiId(Long giId) {
|
this.giId=giId;
|
}
|
|
|
public Integer getGjNo() {
|
return gjNo;
|
}
|
|
public void setGjNo(Integer gjNo) {
|
this.gjNo=gjNo;
|
}
|
|
|
public Date getGjBeginTime() {
|
return gjBeginTime;
|
}
|
|
public void setGjBeginTime(Date gjBeginTime) {
|
this.gjBeginTime=gjBeginTime;
|
}
|
|
|
public Date getGjEndTime() {
|
return gjEndTime;
|
}
|
|
public void setGjEndTime(Date gjEndTime) {
|
this.gjEndTime=gjEndTime;
|
}
|
|
|
public Integer getGjStatus() {
|
return gjStatus;
|
}
|
|
public void setGjStatus(Integer gjStatus) {
|
this.gjStatus=gjStatus;
|
}
|
|
public Long getGjHeadId() {
|
return gjHeadId;
|
}
|
|
public void setGjHeadId(Long gjHeadId) {
|
this.gjHeadId = gjHeadId;
|
}
|
|
public Long getGpId() {
|
return gpId;
|
}
|
|
public void setGpId(Long gpId) {
|
this.gpId = gpId;
|
}
|
|
public List<ShopActivitiesGroupJoinUser> getJoinUserList() {
|
return joinUserList;
|
}
|
|
public void setJoinUserList(List<ShopActivitiesGroupJoinUser> joinUserList) {
|
this.joinUserList = joinUserList;
|
}
|
|
public String getHeadName() {
|
return headName;
|
}
|
|
public void setHeadName(String headName) {
|
this.headName = headName;
|
}
|
|
public boolean isHasChildren() {
|
return hasChildren;
|
}
|
|
public void setHasChildren(boolean hasChildren) {
|
this.hasChildren = hasChildren;
|
}
|
}
|