| | |
| | | package com.ruoyi.system.query; |
| | | |
| | | import com.ruoyi.common.core.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; /** |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2025/3/27 13:49 |
| | | */ |
| | |
| | | @ApiModel |
| | | public class CarWarnListResp { |
| | | @ApiModelProperty("车辆名称") |
| | | @Excel(name = "车辆名称", width = 30) |
| | | private String carName; |
| | | @ApiModelProperty("车牌号") |
| | | @Excel(name = "车牌号码", width = 30) |
| | | private String vehicleNumber; |
| | | @ApiModelProperty("持续报警") |
| | | private String keepWarn; |
| | | @ApiModelProperty("驾驶员名称") |
| | | @Excel(name = "驾驶员名称", width = 30) |
| | | private String driverName; |
| | | @ApiModelProperty("所属公司") |
| | | @Excel(name = "所属公司", width = 30) |
| | | private String enterpriseName; |
| | | @ApiModelProperty("终端编号") |
| | | @Excel(name = "终端编号", width = 30) |
| | | private String terminalNumber; |
| | | @ApiModelProperty("开始报警时间") |
| | | @Excel(name = "开始报警时间", width = 30) |
| | | private String startTime; |
| | | @ApiModelProperty("结束报警时间") |
| | | @Excel(name = "结束报警时间", width = 30) |
| | | private String endTime; |
| | | @ApiModelProperty("持续报警") |
| | | private String keepWarn; |
| | | @ApiModelProperty("持续时长") |
| | | @Excel(name = "持续时长", width = 30) |
| | | private Integer keepTime; |
| | | @ApiModelProperty("持续里程") |
| | | @Excel(name = "持续里程", width = 30) |
| | | private BigDecimal keepDistance; |
| | | @ApiModelProperty("报警类型") |
| | | @Excel(name = "报警类型", width = 30) |
| | | private String warnType; |
| | | @ApiModelProperty("报警等级") |
| | | @Excel(name = "报警等级", width = 30) |
| | | private String warnLevel; |
| | | @ApiModelProperty("报警次数") |
| | | @Excel(name = "报警次数", width = 30) |
| | | private Integer warnNumber; |
| | | @ApiModelProperty("报警来源") |
| | | @Excel(name = "报警来源", width = 30) |
| | | private String warnSource; |
| | | @ApiModelProperty("处理状态") |
| | | @Excel(name = "处理状态", width = 30) |
| | | private String treatmentState; |
| | | @ApiModelProperty("处理人") |
| | | @Excel(name = "处理人", width = 30) |
| | | private String treatmentUser; |
| | | @ApiModelProperty("处理时间") |
| | | @Excel(name = "处理时间", width = 30) |
| | | private String treatmentTime; |
| | | @ApiModelProperty("处理描述") |
| | | @Excel(name = "处理描述", width = 30) |
| | | private String treatmentRemark; |
| | | } |