package com.nova.sankuai.domain.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @author weikangdi
|
* @create 2022/1/26
|
*/
|
@ApiModel(value = "渠道会员订单购买日志")
|
@Data
|
public class VipCardOrderLog {
|
|
@ApiModelProperty(value = "主键")
|
@TableId
|
private Long id;
|
|
@ApiModelProperty(value = "用户Id")
|
private Long customerUserId;
|
|
@ApiModelProperty(value = "渠道Id")
|
private Long channelId;
|
|
@ApiModelProperty(value = "购买状态 参考枚举VipCardOrderLogEnum")
|
private Integer status;
|
|
@ApiModelProperty(value = "创建日期")
|
private Date creationDate;
|
|
@ApiModelProperty(value = "日志标识符")
|
private String uuidFlag;
|
|
@ApiModelProperty(value = "卡类Id")
|
private String cardId;
|
|
@ApiModelProperty(value = "订单Id")
|
private String vipOrderId;
|
|
@ApiModelProperty(value = "实际支付价格")
|
private Integer sellingPrice;
|
|
@ApiModelProperty(value = "标价")
|
private Integer markedPrice;
|
|
@ApiModelProperty(value = "会员服务类型 参考枚举VipCardTypeEnum")
|
private Integer vipType;
|
|
}
|