package com.ruoyi.system.query;
|
|
import com.ruoyi.common.core.web.page.BasePage;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/3/24 15:27
|
*/
|
@Data
|
@ApiModel
|
public class CarListReq extends BasePage {
|
@ApiModelProperty(value = "车牌号")
|
private String vehicleNumber;
|
@ApiModelProperty(value = "公司名称")
|
private String enterpriseName;
|
@ApiModelProperty(value = "所属车主")
|
private String driverName;
|
@ApiModelProperty(value = "车身颜色")
|
private String carColor;
|
@ApiModelProperty(value = "车辆经营区域")
|
private String area;
|
@ApiModelProperty(value = "车辆型号")
|
private String brandModel;
|
@ApiModelProperty(value = "载客人数")
|
private Integer startNum;
|
@ApiModelProperty(value = "载客人数")
|
private Integer endNum;
|
@ApiModelProperty(value = "运营类型")
|
private String operateType;
|
@ApiModelProperty(value = "车辆状态")
|
private Integer status;
|
}
|