|
@@ -4,20 +4,20 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
-import com.yonge.cooleshow.biz.dal.enums.ClientEnum;
|
|
|
|
-import com.yonge.cooleshow.biz.dal.enums.PeriodEnum;
|
|
|
|
-import com.yonge.cooleshow.biz.dal.enums.SourceTypeEnum;
|
|
|
|
|
|
+import com.yonge.cooleshow.biz.dal.enums.*;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
+import lombok.Data;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 购买会员卡记录表
|
|
* 购买会员卡记录表
|
|
*/
|
|
*/
|
|
|
|
+@Data
|
|
@TableName("vip_card_record")
|
|
@TableName("vip_card_record")
|
|
@ApiModel(value = "VipCardRecord对象", description = "购买会员卡记录表")
|
|
@ApiModel(value = "VipCardRecord对象", description = "购买会员卡记录表")
|
|
public class VipCardRecord implements Serializable {
|
|
public class VipCardRecord implements Serializable {
|
|
@@ -90,131 +90,20 @@ public class VipCardRecord implements Serializable {
|
|
@TableField(value = "reason_")
|
|
@TableField(value = "reason_")
|
|
private String reason;
|
|
private String reason;
|
|
|
|
|
|
- public Long getCreateBy() {
|
|
|
|
- return createBy;
|
|
|
|
- }
|
|
|
|
|
|
+ @ApiModelProperty("会员类型 VIP,SVIP")
|
|
|
|
+ @TableField(value = "vip_type_")
|
|
|
|
+ private EVipType vipType;
|
|
|
|
|
|
- public void setCreateBy(Long createBy) {
|
|
|
|
- this.createBy = createBy;
|
|
|
|
- }
|
|
|
|
|
|
+ @ApiModelProperty("状态 ADD:新增,DEDUCTION:扣减,UPDATE:变更")
|
|
|
|
+ @TableField(value = "status_")
|
|
|
|
+ private EVipRecordStatus status;
|
|
|
|
|
|
- public String getReason() {
|
|
|
|
- return reason;
|
|
|
|
- }
|
|
|
|
|
|
+ @ApiModelProperty("是否展示1:展示,0:隐藏")
|
|
|
|
+ @TableField(value = "display_flag_")
|
|
|
|
+ private Boolean displayFlag;
|
|
|
|
|
|
- public void setReason(String reason) {
|
|
|
|
- this.reason = reason;
|
|
|
|
- }
|
|
|
|
|
|
+ @ApiModelProperty("关联ID")
|
|
|
|
+ @TableField(value = "ref_id_")
|
|
|
|
+ private Long refId;
|
|
|
|
|
|
- public Integer getTimes() {
|
|
|
|
- return times;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setTimes(Integer times) {
|
|
|
|
- this.times = times;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public PeriodEnum getType() {
|
|
|
|
- return type;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setType(PeriodEnum type) {
|
|
|
|
- this.type = type;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public SourceTypeEnum getSourceType() {
|
|
|
|
- return sourceType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSourceType(SourceTypeEnum sourceType) {
|
|
|
|
- this.sourceType = sourceType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public ClientEnum getClientType() {
|
|
|
|
- return clientType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setClientType(ClientEnum clientType) {
|
|
|
|
- this.clientType = clientType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getId() {
|
|
|
|
- return id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setId(Long id) {
|
|
|
|
- this.id = id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getUserId() {
|
|
|
|
- return userId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUserId(Long userId) {
|
|
|
|
- this.userId = userId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getOrderNo() {
|
|
|
|
- return orderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrderNo(String orderNo) {
|
|
|
|
- this.orderNo = orderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSubOrderNo() {
|
|
|
|
- return subOrderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSubOrderNo(String subOrderNo) {
|
|
|
|
- this.subOrderNo = subOrderNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getVipCardId() {
|
|
|
|
- return vipCardId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setVipCardId(Long vipCardId) {
|
|
|
|
- this.vipCardId = vipCardId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Date getStartTime() {
|
|
|
|
- return startTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setStartTime(Date startTime) {
|
|
|
|
- this.startTime = startTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Date getCreateTime() {
|
|
|
|
- return createTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCreateTime(Date createTime) {
|
|
|
|
- this.createTime = createTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Date getUpdateTime() {
|
|
|
|
- return updateTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUpdateTime(Date updateTime) {
|
|
|
|
- this.updateTime = updateTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Date getEndTime() {
|
|
|
|
- return endTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setEndTime(Date endTime) {
|
|
|
|
- this.endTime = endTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getMsgStatus() {
|
|
|
|
- return msgStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setMsgStatus(Integer msgStatus) {
|
|
|
|
- this.msgStatus = msgStatus;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|