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.
100 lines
2.3 KiB
100 lines
2.3 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_construction
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2024-01-12
|
||
|
*/
|
||
|
@ApiModel(value = "DcEventConstruction",description = "施工建设事件实体")
|
||
|
@Data
|
||
|
@AllArgsConstructor
|
||
|
@NoArgsConstructor
|
||
|
public class DcEventConstruction extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** 事件编号 */
|
||
|
private String id;
|
||
|
|
||
|
/** 管制方式:
|
||
|
1-封闭
|
||
|
2-不封闭 */
|
||
|
|
||
|
private Long controlMode;
|
||
|
|
||
|
/** 地点类型:
|
||
|
1-单点
|
||
|
2-多点 */
|
||
|
|
||
|
private Long locationType;
|
||
|
|
||
|
/** 特殊地点描述 */
|
||
|
@Excel(name = "特殊地点描述")
|
||
|
private String specialPlaceDescription;
|
||
|
|
||
|
/** 专项施工:
|
||
|
1-专项工程施工
|
||
|
2-改扩建专项工程施工
|
||
|
3-桥梁专项工程施工
|
||
|
4-其他专项工程施工 */
|
||
|
|
||
|
private Long specialConstruction;
|
||
|
|
||
|
/** 其他施工名称 */
|
||
|
@Excel(name = "其他施工名称")
|
||
|
private String otherConstructionName;
|
||
|
|
||
|
/** 施工措施:
|
||
|
0-无
|
||
|
1-并道行驶
|
||
|
2-临时保通
|
||
|
3-借路侧服务区通行 */
|
||
|
|
||
|
private Long constructionMeasurement;
|
||
|
|
||
|
/** 字段名称对应:
|
||
|
互通立交
|
||
|
收费站
|
||
|
服务区
|
||
|
|
||
|
*/
|
||
|
|
||
|
private Long facilityId;
|
||
|
|
||
|
/** 出入口(收费站/服务区):
|
||
|
1-出口
|
||
|
2-入口 */
|
||
|
@Excel(name = "出入口", readConverterExp = "收=费站/服务区")
|
||
|
private Long exitsInlets;
|
||
|
|
||
|
/** 占用车道
|
||
|
*/
|
||
|
|
||
|
private String laneOccupancy;
|
||
|
|
||
|
/** 通行情况:
|
||
|
1-通行正常
|
||
|
2-通行受阻 */
|
||
|
|
||
|
private Long trafficCondition;
|
||
|
|
||
|
@ApiModelProperty("事件信息实体")
|
||
|
//事件信息表
|
||
|
@TableField(exist = false)
|
||
|
private DcEvent dcEvent;
|
||
|
}
|