package com.dsh.activity.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.util.Date; @Data @ApiModel(value = "VipDetail", description = "会员权益明细") @TableName("t_vip_detail") public class VipDetail { @ApiModelProperty(value = "主键") @TableId(value = "id", type = IdType.NONE) private Integer id; @ApiModelProperty(value = "用户id") @TableField("appUserId") private Integer appUserId; @ApiModelProperty(value = "使用状态 1待使用 2已使用 3已过期") private Integer status; @ApiModelProperty(value = "获取时间") @TableField("insertTime") private Date insertTime; @ApiModelProperty(value = "会员id") @TableField("vipId") private Integer vipId; @ApiModelProperty(value = "会员权益类型 1优惠券 2门票") private Integer type; @ApiModelProperty(value = "会员支付记录id") @TableField("vipPaymentId") private Integer vipPaymentId; @ApiModelProperty(value = "优惠券id") @TableField("couponId") private Integer couponId; @ApiModelProperty(value = "门票名称") @TableField("ticketName") private String ticketName; @ApiModelProperty(value = "开始时间") @TableField("startTime") private Date startTime; @ApiModelProperty(value = "结束时间") @TableField("endTime") private Date endTime; @ApiModelProperty(value = "可用次数") @TableField("useCount") private Integer useCount; @ApiModelProperty(value = "使用门店id") @TableField("useStoreId") private Integer useStoreId; @ApiModelProperty(value = "使用场地id") @TableField("useSiteId") private Integer useSiteId; @ApiModelProperty(value = "使用时间") @TableField("useTime") private Date useTime; @ApiModelProperty(value = "运营商id") @TableField("operatorId") private Integer operatorId; @ApiModelProperty(value = "用户优惠券id") @TableField("userCouponId") private Long userCouponId; }