From 854b85a73739e239d82f1454b7d1181608248186 Mon Sep 17 00:00:00 2001 From: wangsixiang <2970484253@qq.com> Date: Thu, 21 Mar 2024 17:51:40 +0800 Subject: [PATCH] =?UTF-8?q?=E6=84=9F=E7=9F=A5=E4=BA=8B=E4=BB=B6=E5=AF=BC?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/zc/business/domain/DcWarning.java | 20 +++++++------------ 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/zc-business/src/main/java/com/zc/business/domain/DcWarning.java b/zc-business/src/main/java/com/zc/business/domain/DcWarning.java index 3c9376a5..46e5b6d9 100644 --- a/zc-business/src/main/java/com/zc/business/domain/DcWarning.java +++ b/zc-business/src/main/java/com/zc/business/domain/DcWarning.java @@ -26,15 +26,14 @@ public class DcWarning extends BaseEntity private String stakeMark; /** 方向:1-上行2-中3-下行 */ - @Excel(name = "方向: 1-上行 2-中 3-下行") + @Excel(name = "方向",readConverterExp = "1=菏泽方向,3=济南方向,2=双向") private String direction; /** 所属部门 */ - @Excel(name = "所属部门") private Long deptId; /** 警情状态:1-上报2-已完成3-已终止4-自动结束 */ - @Excel(name = "警情状态: 1-上报 2-已完成 3-已终止 4-自动结束") + @Excel(name = "警情状态",readConverterExp = "1=上报,2=已完成,3=已终止,4=自动结束") private Integer warningState; /** 预警时间 */ @@ -43,23 +42,22 @@ public class DcWarning extends BaseEntity private Date warningTime; /** 处理人员 */ - @Excel(name = "处理人员") private Long userId; /** 信息来源:1-视频AI2-雷达识别3-锥桶4-护栏碰撞5-扫码报警6-非机预警 */ - @Excel(name = "信息来源: 1-视频AI 2-雷达识别 3-锥桶 4-护栏碰撞 5-扫码报警 6-非机预警") + @Excel(name = "信息来源", readConverterExp = "1=视频AI,2=雷达识别,3=锥桶,4=护栏碰撞,5=扫码报警,6=非机预警") private Integer warningSource; /** 预警级别 */ - @Excel(name = "预警级别") private Integer warningLevel; /** 事件主类:1-交通拥堵2-行人3-非机动车4-停车5-倒车/逆行6-烟火7-撒落物8-异常天气9-护栏碰撞 */ - @Excel(name = "事件主类: 1-交通拥堵 2-行人 3-非机动车 4-停车 5-倒车/逆行 6-烟火 7-撒落物 8-异常天气 9-护栏碰撞") + @Excel(name = "事件主类", + readConverterExp = "1=交通拥堵,2=行人,3=非机动车,4=停车,5=违规驾驶,6=路障,7=道路施工,8=异常天气,9=护栏碰撞,10=交通事故,11=车辆故障,99=其它") private Integer warningType; /** 事件子类:1-1 拥堵1-2 缓行 */ - @Excel(name = "事件子类: 1-1 拥堵 1-2 缓行 2-1 普通行人") + @Excel(name = "事件子类", readConverterExp =" 1-1=拥堵, 1=2 缓行,2=1 普通行人,2=2 工作人员,3=1 摩托车,3=2 自行车 ,3=3 三轮车,4=1 非工程车,4=2=工程车,4=3 主路有车,4=4 匝道有车,4=5 车辆故障(弃用),4=6 交通事故(弃用) ,4=7 应急车道被占用 ,4=8 车离开应急车道 ,4=9 其他,4=10 未知车辆 ,5=1 倒车/逆行 ,5=2 压线,5=3 掉头,5=4 超速,5=5 低速,5=6 违规变道,5=7 未保持安全距离 ,6=1 烟火,6=2 火灾,6=3 障碍物,6=4 抛洒物,7=1 道路施工,8=1 雨 ,8=2 冰雹 ,8=3 风 ,8=4 雾 ,8=5 高温 ,8=6 积水 ,8=7 路面湿滑 ,8=8 路面结冰 ,8=9 道路能见度低 ,8=10 道路团雾 ,9=1 只碰撞不倾斜 ,9=2 只倾斜无碰撞 ,9=3 碰撞后倾斜,10=1 未知,10=2 单车事故,10=3 多车事故,11=1 车辆抛锚,11=2 车辆炸胎(有备胎),11=2 车辆炸胎(无备胎),99=1 其它") private String warningSubclass; /** 事件标题 */ @@ -69,10 +67,9 @@ public class DcWarning extends BaseEntity /** $column.columnComment */ - @Excel(name = "其它配置", readConverterExp = "$column.readConverterExp()") private String otherConfig; /** 车道0-应急 1-行1 2-行2 3-行3 4-行4 */ - @Excel(name = "车道0-应急 1-行1 2-行2 3-行3 4-行4") + @Excel(name = "车道",readConverterExp="0=应急,1=行1,2=行2,3=行3,4=行4") private String lane; /** 所属辖区路段名称 */ @@ -91,7 +88,6 @@ public class DcWarning extends BaseEntity //@Excel(name = "车辆类型") private String vehicleType; /** 持续时长 */ - @Excel(name = "持续时长(秒)") private int duration; @JsonFormat(pattern = "yyyy-MM-dd",timezone="GMT+8") @@ -103,10 +99,8 @@ public class DcWarning extends BaseEntity private String quarter; //事件原因 - @Excel(name = "事件原因") private String eventCause; //完结时间 - @Excel(name = "完结时间") @JsonFormat(pattern = "yyyy-MM-dd",timezone="GMT+8") private Date endTime; //操作员