package com.dsh.guns.modular.system.model.vo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* 会员权益明细列表
|
*/
|
@Data
|
public class VipDetailVO {
|
@ApiModelProperty(value = "主键")
|
private Integer id;
|
|
@ApiModelProperty(value = "用户id")
|
private Integer appUserId;
|
@ApiModelProperty(value = "用户名称")
|
private String appUserName;
|
@ApiModelProperty(value = "用户电话")
|
private String appUserPhone;
|
|
@ApiModelProperty(value = "使用状态 1待使用 2已使用 3已过期")
|
private Integer status;
|
|
@ApiModelProperty(value = "获取时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date insertTime;
|
|
@ApiModelProperty(value = "会员id")
|
private Integer vipId;
|
@ApiModelProperty(value = "会员名称")
|
private String vipName;
|
@ApiModelProperty(value = "会员权益类型 1优惠券 2门票")
|
private Integer type;
|
|
@ApiModelProperty(value = "会员支付记录id")
|
private Integer vipPaymentId;
|
|
@ApiModelProperty(value = "优惠券id")
|
private Integer couponId;
|
|
@ApiModelProperty(value = "门票名称/优惠券名称")
|
private String ticketName;
|
|
@ApiModelProperty(value = "开始时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date startTime;
|
|
@ApiModelProperty(value = "结束时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date endTime;
|
|
@ApiModelProperty(value = "可用次数")
|
private Integer useCount;
|
|
@ApiModelProperty(value = "使用门店id")
|
private Integer useStoreId;
|
@ApiModelProperty(value = "门店名称")
|
private String storeName;
|
@ApiModelProperty(value = "使用场地id")
|
private Integer useSiteId;
|
|
|
@ApiModelProperty(value = "使用商品/场地名称")
|
private String goodsName;
|
|
@ApiModelProperty(value = "使用时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date useTime;
|
|
@ApiModelProperty(value = "运营商id")
|
private Integer operatorId;
|
@ApiModelProperty(value = "运营商名称")
|
private String operatorName;
|
|
@ApiModelProperty(value = "用户优惠券id")
|
private Long userCouponId;
|
}
|