package com.matrix.system.shopXcx.bean;
|
|
import com.matrix.core.pojo.EntityDTO;
|
import com.matrix.core.anotations.Extend;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @description shop_activities_group_join_use
|
* @author wzy
|
* @date 2020-03-21 15:26
|
*/
|
public class ShopActivitiesGroupJoinUser extends EntityDTO{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 是否为团长 是
|
*/
|
public static final int USER_IS_HEAD_Y = 1;
|
|
/**
|
* 是否为团长 否
|
*/
|
public static final int USER_IS_HEAD_N = 2;
|
|
/**
|
* 是否已支付 是
|
*/
|
public static final int IS_HAS_PAY_Y = 1;
|
|
/**
|
* 是否已支付 否
|
*/
|
public static final int IS_HAS_PAY_N = 2;
|
|
/**
|
* 是否超时
|
*/
|
public static final int IS_HAS_PAY_TIME_OUT = 3;
|
|
/**
|
* 是否已取消 是
|
*/
|
public static final int IS_HAS_CANCEL_Y = 1;
|
|
/**
|
* 是否已取消 否
|
*/
|
public static final int IS_HAS_CANCEL_N = 2;
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
|
/**
|
* 记录主键
|
*/
|
private Long gjId;
|
|
|
/**
|
* 拼团信息主键
|
*/
|
private Long giId;
|
|
|
/**
|
* 用户Id
|
*/
|
private Long userId;
|
|
|
/**
|
* 订单ID
|
*/
|
private Long orderId;
|
|
|
/**
|
* 是否为团长
|
*/
|
private Integer isHead;
|
|
/**
|
* 是否已支付 1-是 2-否
|
*/
|
private Integer isHasPay;
|
|
/**
|
* 支付结束时间
|
*/
|
private Date payEndTime;
|
|
/**
|
* 支付剩余时间
|
*/
|
private Long remainTime;
|
|
private String avatarUrl;
|
|
/**
|
* 是否新用户 1-是 2-否
|
*/
|
private Integer isNewUser;
|
|
private Integer isHasCancel;
|
|
private String userName;
|
|
private String orderNo;
|
|
private BigDecimal orderMoney;
|
|
private int count;
|
|
private int orderStatus;
|
|
private int payStatus;
|
|
private Long companyId;
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
public BigDecimal getOrderMoney() {
|
return orderMoney;
|
}
|
|
public void setOrderMoney(BigDecimal orderMoney) {
|
this.orderMoney = orderMoney;
|
}
|
|
public int getCount() {
|
return count;
|
}
|
|
public void setCount(int count) {
|
this.count = count;
|
}
|
|
public int getOrderStatus() {
|
return orderStatus;
|
}
|
|
public void setOrderStatus(int orderStatus) {
|
this.orderStatus = orderStatus;
|
}
|
|
public int getPayStatus() {
|
return payStatus;
|
}
|
|
public void setPayStatus(int payStatus) {
|
this.payStatus = payStatus;
|
}
|
|
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 getGjId() {
|
return gjId;
|
}
|
|
public void setGjId(Long gjId) {
|
this.gjId=gjId;
|
}
|
|
|
public Long getGiId() {
|
return giId;
|
}
|
|
public void setGiId(Long giId) {
|
this.giId=giId;
|
}
|
|
|
public Long getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Long userId) {
|
this.userId = userId;
|
}
|
|
public Long getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(Long orderId) {
|
this.orderId=orderId;
|
}
|
|
|
public Integer getIsHead() {
|
return isHead;
|
}
|
|
public void setIsHead(Integer isHead) {
|
this.isHead=isHead;
|
}
|
|
public Integer getIsHasPay() {
|
return isHasPay;
|
}
|
|
public void setIsHasPay(Integer isHasPay) {
|
this.isHasPay = isHasPay;
|
}
|
|
public Date getPayEndTime() {
|
return payEndTime;
|
}
|
|
public void setPayEndTime(Date payEndTime) {
|
this.payEndTime = payEndTime;
|
}
|
|
public Long getRemainTime() {
|
return remainTime;
|
}
|
|
public void setRemainTime(Long remainTime) {
|
this.remainTime = remainTime;
|
}
|
|
public Integer getIsNewUser() {
|
return isNewUser;
|
}
|
|
public void setIsNewUser(Integer isNewUser) {
|
this.isNewUser = isNewUser;
|
}
|
|
public Integer getIsHasCancel() {
|
return isHasCancel;
|
}
|
|
public void setIsHasCancel(Integer isHasCancel) {
|
this.isHasCancel = isHasCancel;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public String getOrderNo() {
|
return orderNo;
|
}
|
|
public void setOrderNo(String orderNo) {
|
this.orderNo = orderNo;
|
}
|
}
|