Air
2024-11-04 cb3b3801255082c53145bd752230339eae5d3e5a
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
34
35
36
37
38
39
package com.nova.sankuai.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @author weikangdi
 * @create 2022/2/7
 */
@Data
@ApiModel(value = "渠道会员购买日志明细Vo")
public class VipStatisticsDetailVo {
 
    @ApiModelProperty(value = "客户Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long customerUserId;
 
    @ApiModelProperty(value = "客户名")
    private String customerName;
 
    @ApiModelProperty(value = "客户手机号")
    private String phone;
 
    @ApiModelProperty(value = "实际支付价格")
    private Integer sellingPrice;
 
    @ApiModelProperty(value = "标价")
    private Integer markedPrice;
 
    @ApiModelProperty(value = "创建时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date creationDate;
}