zbb378@sohu.com
2024-11-04 b2bad51be3c8d3e78d7f81a19415faeac2d0297c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.nova.sankuai.domain.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/1/26
 */
@Data
@ApiModel(value = "渠道会员购买日志Dto")
public class VipCardOrderLogDto {
 
    @ApiModelProperty(value = "渠道AppId")
    private String appId;
 
    @ApiModelProperty(value = "购买状态 0-点击未下单 1-点击已下单 2-点击已购买")
    private Integer status;
 
    @ApiModelProperty(value = "卡类ID")
    private String cardId;
 
    @ApiModelProperty(value = "订单Id")
    private String orderId;
 
    @ApiModelProperty(value = "实际支付价格")
    private Integer sellingPrice;
 
    @ApiModelProperty(value = "标价")
    private Integer markedPrice;
 
}