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;
|
|
}
|