package com.artfess.rescue.base.model;

import com.artfess.base.entity.BaseModel;
import com.artfess.base.entity.BizDelModel;
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

/**
 * 隧道信息表
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 系统管理员
 * @since 2024-07-26
 */
@ApiModel(value="BizBaseTunnel对象", description="隧道信息表")
@Data
@TableName("biz_base_tunnel")
public class BizBaseTunnel extends BaseModel<BizBaseTunnel> {

    private static final long serialVersionUID = 1L;

    @ApiModelProperty(value = "主键ID")
    @TableId(value = "ID_", type = IdType.ASSIGN_ID)
    private String id;

    @ApiModelProperty(value = "公司ID")
    @TableField("COMPANY_ID_")
    private String companyId;

    @ApiModelProperty(value = "多个公司ID,用逗号分割")
    @TableField("COMPANY_IDS_")
    private String companyIds;

    @ApiModelProperty(value = "所属公司名称")
    @TableField("COMPANY_NAME_")
    private String companyName;

    @ApiModelProperty(value = "排序")
    @TableField("SN_")
    private Integer sn;

    @ApiModelProperty(value = "等级值")
    @TableField("GRADE_VALUE_")
    private String gradeValue;

    @ApiModelProperty(value = "等级")
    @TableField("GRADE_")
    private String grade;

    @ApiModelProperty(value = "编号")
    @TableField("NUMBER_")
    private String number;

    @ApiModelProperty(value = "所在路段id(关联路段表ID)")
    @TableField("ROAD_SEGMENT_ID_")
    private String roadSegmentId;

    @ApiModelProperty(value = "所在路段NAME")
    @TableField("ROAD_SEGMENT_NAME_")
    private String roadSegmentName;

    @ApiModelProperty(value = "管养单位ID")
    @TableField("OFFICE_ID_")
    private String officeId;

    @ApiModelProperty(value = "管养单位名称")
    @TableField("OFFICE_NAME_")
    private String officeName;

    @ApiModelProperty(value = "名称")
    @TableField("NAME_")
    private String name;

    @ApiModelProperty(value = "类型")
    @TableField("TYPE_")
    private String type;

    @ApiModelProperty(value = "经度")
    @TableField("LNG")
    private Double lng;

    @ApiModelProperty(value = "纬度")
    @TableField("LAT")
    private Double lat;

    @ApiModelProperty(value = "中心桩号")
    @TableField("CENT_PEG_")
    private String centPeg;

    @ApiModelProperty(value = "方向")
    @TableField("DIRECTION_")
    private String direction;

    @ApiModelProperty(value = "长度")
    @TableField("LENGTH_")
    private Float length;

    @ApiModelProperty(value = "宽度")
    @TableField("WIDTH_")
    private Float width;

    @ApiModelProperty(value = "高度")
    @TableField("HIGHT_")
    private Float hight;

    @ApiModelProperty(value = "人行道宽(m)")
    @TableField("PERSON_WIDTH_")
    private String personWidth;

    @ApiModelProperty(value = "进洞口形式")
    @TableField("ENTRANCE_FORM_")
    private String entranceForm;

    @ApiModelProperty(value = "出洞口形式")
    @TableField("EXIT_FORM_")
    private String exitForm;

    @ApiModelProperty(value = "断面形式")
    @TableField("SURFACE_LAY_")
    private String surfaceLay;

    @ApiModelProperty(value = "衬砌材料")
    @TableField("ON_MATERIAL_")
    private String onMaterial;

    @ApiModelProperty(value = "洞身材料")
    @TableField("BODY_MATERIAL_")
    private String bodyMaterial;

    @ApiModelProperty(value = "设计单位")
    @TableField("DESIGN_UNIT_")
    private String designUnit;

    @ApiModelProperty(value = "监管单位")
    @TableField("WATCH_UNIT_")
    private String watchUnit;

    @ApiModelProperty(value = "施工单位")
    @TableField("CONSTRUCT_UNIT_")
    private String constructUnit;

    @ApiModelProperty(value = "安全通道统计")
    @TableField("SAFE_CHANNELS_COUNT_")
    private String safeChannelsCount;

    @ApiModelProperty(value = "建成日期")
    @TableField("FINISH_DAY_")
    private String finishDay;

    @ApiModelProperty(value = "设计图纸")
    @TableField("DESIGN_DRAWING_")
    private String designDrawing;

    @ApiModelProperty(value = "设计文件")
    @TableField("DESIGN_FILE_")
    private String designFile;

    @ApiModelProperty(value = "施工文件")
    @TableField("CONSTRUCTION_FILE_")
    private String constructionFile;

    @ApiModelProperty(value = "完成文件")
    @TableField("COMPLETE_FILE_")
    private String completeFile;

    @ApiModelProperty(value = "检查文件")
    @TableField("CHECK_FILE_")
    private String checkFile;

    @ApiModelProperty(value = "管理员文件")
    @TableField("ADMIN_FILE_")
    private String adminFile;

    @ApiModelProperty(value = "定期检查报告")
    @TableField("REGULAR_CHECK_REPORT_")
    private String regularCheckReport;

    @ApiModelProperty(value = "专项检查报告")
    @TableField("SPECIAL_CHECK_REPORT_")
    private String specialCheckReport;

    @ApiModelProperty(value = "文件编号")
    @TableField("FILE_NUM_")
    private String fileNum;

    @ApiModelProperty(value = "文件地址")
    @TableField("FILE_PLACE_")
    private String filePlace;

    @ApiModelProperty(value = "建档日期")
    @TableField("CREATE_DAY_")
    private String createDay;

    @ApiModelProperty(value = "起点桩号")
    @TableField("START_PEG_")
    private Float startPeg;

    @ApiModelProperty(value = "止点桩号")
    @TableField("END_PEG_")
    private Float endPeg;

    @ApiModelProperty(value = "x")
    @TableField("X_")
    private String x;

    @ApiModelProperty(value = "y")
    @TableField("Y_")
    private String y;

    @ApiModelProperty(value = "类型值")
    @TableField("TYPE_VALUE_")
    private String typeValue;

    @ApiModelProperty(value = "中心值")
    @TableField("CENT_PEG_K_")
    private String centPegK;

    @ApiModelProperty(value = "出口值")
    @TableField("EXIT_FORM_VALUE_")
    private String exitFormValue;

    @ApiModelProperty(value = "方向值")
    @TableField("DIRECTION_VALUE_")
    private String directionValue;

    @ApiModelProperty(value = "身体材料值")
    @TableField("BODY_MATERIAL_VALUE_")
    private String bodyMaterialValue;

    @ApiModelProperty(value = "入口样子值")
    @TableField("ENTRANCE_FORM_VALUE_")
    private String entranceFormValue;

    @ApiModelProperty(value = "表面铺设值")
    @TableField("SURFACE_LAY_VALUE_")
    private String surfaceLayValue;

    @ApiModelProperty(value = "上层材料值")
    @TableField("ON_MATERIAL_VALUE_")
    private String onMaterialValue;

    @ApiModelProperty(value = "是否为水下下隧道 (0:是 1:否 )")
    @TableField("SUBMERGED_TUNNEL_")
    private Integer submergedTunnel;

    @ApiModelProperty(value = "版本号")
    @TableField("VERSION_")
    private Long version;

    @ApiModelProperty(value = "租户ID")
    @TableField("TENANT_ID_")
    private String tenantId;

    @ApiModelProperty(value = "排水类型")
    @TableField("DRAINAGE_TYPE_")
    private String drainageType;

    @ApiModelProperty(value = "隧道形式")
    @TableField("TUNNEL_SHAPE_")
    private String tunnelShape;

    @ApiModelProperty(value = "消防设施")
    @TableField("FIRE_FIGHTING_FACILITIES_")
    private String fireFightingFacilities;

    @ApiModelProperty(value = "安全通道数量")
    @TableField("SAFETY_CHANNELS_AMOUNT_")
    private Integer safetyChannelsAmount;

    @ApiModelProperty(value = "隧道通风")
    @TableField("TUNNEL_VENTILATION_")
    private Integer tunnelVentilation;

    @ApiModelProperty(value = "隧道照明")
    @TableField("TUNNEL_LIGHTING_")
    private Integer tunnelLighting;

    @ApiModelProperty(value = "所属行政区")
    @TableField("ADMINISTRATIVE_REGION_")
    private String administrativeRegion;

    @ApiModelProperty(value = "地理位置")
    @TableField("GEOGRAPHIC_POSITION_")
    private String geographicPosition;

    @ApiModelProperty(value = "车道数")
    @TableField("VEHICLE_LANE_AMOUNT_")
    private String vehicleLaneAmount;

    @ApiModelProperty(value = "进洞方向")
    @TableField("TUNNEL_ENTRY_DIRECTION_")
    private String tunnelEntryDirection;

    @ApiModelProperty(value = "隧道洞别")
    @TableField("TUNNEL_TYPE_")
    private String tunnelType;

    @ApiModelProperty(value = "是否已删，1已删除，0未删除")
    @TableField(value = "IS_DELE_")
    @TableLogic
    private String isDele="0";

    @ApiModelProperty(value = "更新人姓名")
    @TableField(value="UPDATE_NAME_", select=false)
    private String updateName;

    @ApiModelProperty(value = "最后更新时间戳")
    @TableField(value="LAST_TIME_",select=false)
    private Long lastTime;

}
