peng
2026-03-25 2e5c2bc2b7afc7926ec441ff083acd179cb29fc6
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
package com.tievd.jyz.entity.vo;
 
import com.tievd.cube.commons.annotations.Dict;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
@Data
@Accessors(chain = true)
@Schema(description = "车辆查询信息")
public class CarInfoReqVo implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "车牌号")
    private String licenseNum;
 
    @Schema(description = "归属地")
    private String licensePlace;
    
    @Schema(description = "车型id")
    private String modelId;
    
    @Schema(description = "车型名称")
    private String modelName;
 
    @Schema(description = "客户类型1潜在 2普通 3忠实")
    @Dict("client_type")
    private Byte clientType;
    
    @Schema(description = "机构编码")
    private String orgCode;
    
    @Schema(description = "加油次数左值")
    private Integer oilCountLeft;
    
    @Schema(description = "加油次数右值")
    private Integer oilCountRight;
    
    @Schema(description = "累计加油量 左")
    private Integer oilSumLeft;
    
    @Schema(description = "累计加油量 右")
    private Integer oilSumRight;
    
    @Schema(description = "自定义标签名称")
    private String labelName;
    
}