peng
2026-03-18 e59a0201057ba67cad425fed804c82ff4ba0c6f1
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package com.tievd.jyz.entity.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.tievd.cube.commons.annotations.Dict;
import com.tievd.cube.commons.easyexcel.annotations.Excel;
import com.tievd.jyz.plugin.S3DataParse;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@Accessors(chain = true)
@Schema(description = "车辆信息表")
@S3DataParse
public class CarInfoRespVo implements Serializable {
 
    private static final long serialVersionUID = 1L;
    
    @Schema(description = "车牌号")
    @Excel("车牌号")
    private String licenseNum;
    
    @Schema(description = "归属地")
    @Excel("归属地")
    private String licensePlace;
    
    @Schema(description = "汽车颜色")
//    @Excel("汽车颜色")
    private String color;
    
    @Schema(description = "车型id")
    @TableField("model_id")
    private String modelId;
    
    @Schema(description = "车型名称")
    @Excel("车型")
    private String modelName;
    
    @Schema(description = "车辆图片")
    @S3DataParse
    private String imgPath;
    
 
//    @Schema(description = "自定义标签id")
//    private Integer labelId;
    
    @Schema(description = "标签名")
    @Excel("标签名")
    private String labelName;
    
    @Schema(description = "客户类型1潜在 2普通 3忠实")
    @Dict("client_type")
    @Excel("客户类型")
    private Byte clientType;
    
    @Schema(description = "累计出现次数")
    @Excel("累计出现次数")
    private Integer appearCount;
    
    @Schema(description = "累计加油次数")
    @Excel("累计加油次数")
    private Integer oilCount;
    
    @Schema(description = "累计加油量 /升")
    @Excel("累计加油量/升")
    private Integer oilSum;
    
    @Schema(description = "累计违规次数")
//    @Excel("累计违规次数")
    private Integer eventCount;
    
    @Schema(description = "累计停留时间/min")
//    @Excel("累计停留时间/min")
    private Integer stayTime;
    
    @Schema(description = "偏好加油位")
//    @Excel("偏好加油位")
    private String oilPosition;
    
    @Schema(description = "出现高频时段")
    @Dict("higher_phrase")
//    @Excel("出现高频时段")
    private String higherPhrase;
    
    @Schema(description = "最近出现(更新)时间")
    @Excel("最近出现时间")
    private Date updateTime;
    
    @Schema(description = "创建时间")
    @Excel("建档时间")
    private Date createTime;
 
}