You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.8 KiB
73 lines
1.8 KiB
1 year ago
|
package com.zc.business.domain;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||
|
import io.swagger.annotations.ApiModel;
|
||
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import lombok.Data;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||
|
import com.ruoyi.common.annotation.Excel;
|
||
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||
|
|
||
|
/**
|
||
|
* 交通管制事件
|
||
|
|
||
|
"管制设施"为事件“事件子类”对象 dc_event_traffic_control
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2024-01-12
|
||
|
*/
|
||
|
@ApiModel(value = "DcEventTrafficControl", description = "交通管制事件实体")
|
||
|
@Data
|
||
|
@AllArgsConstructor
|
||
|
@NoArgsConstructor
|
||
|
public class DcEventTrafficControl extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** 事件编号 */
|
||
|
private String id;
|
||
|
|
||
|
/** 管制分类:
|
||
|
1-封闭
|
||
|
2-限行 */
|
||
|
|
||
|
private Long controlType;
|
||
|
|
||
|
/** 管制原因:
|
||
|
1-车流量大
|
||
|
2-交通事故
|
||
|
3-恶劣天气
|
||
|
4-施工
|
||
|
5-警备任务
|
||
|
6-其他 */
|
||
|
|
||
|
private Long controlCause;
|
||
|
|
||
|
/** 出入口(收费站/服务区):
|
||
|
1-出口
|
||
|
2-入口 */
|
||
|
@Excel(name = "出入口", readConverterExp = "收=费站/服务区")
|
||
|
private Long exitsInlets;
|
||
|
|
||
|
/** 字段名称对应:
|
||
|
立交桥
|
||
|
收费站
|
||
|
服务区
|
||
|
|
||
|
*/
|
||
|
private Long facilityId;
|
||
|
|
||
|
/** 匝道(立交)
|
||
|
*/
|
||
|
@Excel(name = "匝道", readConverterExp = "立=交")
|
||
|
private Long rampId;
|
||
|
|
||
|
@ApiModelProperty("事件信息实体")
|
||
|
//事件信息表
|
||
|
@TableField(exist = false)
|
||
|
private DcEvent dcEvent;
|
||
|
}
|