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="BizBaseCulvert对象", description="涵洞信息表")
@Data
@TableName("biz_base_culvert")
public class BizBaseCulvert extends BaseModel<BizBaseCulvert> {

    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 = "起点桩号")
    @TableField("START_PEG_")
    private String startPeg;

    @ApiModelProperty(value = "止点桩号")
    @TableField("END_PEG_")
    private String endPeg;

    @ApiModelProperty(value = "中心桩号")
    @TableField("CENT_PEG_")
    private String centPeg;

    @ApiModelProperty(value = "长度")
    @TableField("LENGTH_")
    private Float length;

    @ApiModelProperty(value = "方向值")
    @TableField("DIRECTION_VALUE_")
    private String directionValue;

    @ApiModelProperty(value = "跨径")
    @TableField("SPAN_")
    private Float span;

    @ApiModelProperty(value = "维度")
    @TableField("LAT")
    private Double lat;

    @ApiModelProperty(value = "经度")
    @TableField("LNG")
    private Double lng;

    @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("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("DESIGNLOAD_")
    private String designload;

    @ApiModelProperty(value = "所在路段编号")
    @TableField("ROAD_SEGMENT_CODE_")
    private String roadSegmentCode;

    @ApiModelProperty(value = "功能类型")
    @TableField("FUNCTION_TYPE_")
    private String functionType;

    @ApiModelProperty(value = "功能类型值")
    @TableField("FUNCTION_TYPE_VALUE_")
    private String functionTypeValue;

    @ApiModelProperty(value = "名称")
    @TableField("NAME_")
    private String name;

    @ApiModelProperty(value = "类型")
    @TableField("TYPE_")
    private String type;

    @ApiModelProperty(value = "方向")
    @TableField("DIRECTION_")
    private String direction;

    @ApiModelProperty(value = "匝道桩号")
    @TableField("RAMP_PEG_")
    private String rampPeg;

    @ApiModelProperty(value = "高度")
    @TableField("HEIGHT_")
    private Float height;

    @ApiModelProperty(value = "路面宽度")
    @TableField("PAVEMENT_WIDTH_")
    private Float pavementWidth;

    @ApiModelProperty(value = "路基宽度")
    @TableField("SUBGRADE_WIDTH_")
    private Float subgradeWidth;

    @ApiModelProperty(value = "路面类型")
    @TableField("PAVEMENT_TYPE_")
    private String pavementType;

    @ApiModelProperty(value = "涵底纵坡")
    @TableField("LONGITUDINAL_SLOPE_")
    private String longitudinalSlope;

    @ApiModelProperty(value = "涵底铺砌")
    @TableField("BOTTOM_PAVING_")
    private String bottomPaving;

    @ApiModelProperty(value = "填土高度")
    @TableField("BANKET_HIGHT_")
    private Float banketHight;

    @ApiModelProperty(value = "孔数")
    @TableField("HOLE_COUNT_")
    private Integer holeCount;

    @ApiModelProperty(value = "洞身材料")
    @TableField("BODY_MATERIAL_")
    private String bodyMaterial;

    @ApiModelProperty(value = "洞顶材料")
    @TableField("TOP_MATERIAL_")
    private String topMaterial;

    @ApiModelProperty(value = "进洞口材料")
    @TableField("ENTRANCE_MATERIAL_")
    private String entranceMaterial;

    @ApiModelProperty(value = "进洞口形式")
    @TableField("ENTRANCE_FORM_")
    private String entranceForm;

    @ApiModelProperty(value = "基础形式")
    @TableField("BASIC_FORM_")
    private String basicForm;

    @ApiModelProperty(value = "基础形式值")
    @TableField("BASIC_FORM_VALUE_")
    private String basicFormValue;

    @ApiModelProperty(value = "出洞口材料")
    @TableField("EXIT_MATERIAL_")
    private String exitMaterial;

    @ApiModelProperty(value = "出洞口形式")
    @TableField("EXIT_FORM_")
    private String exitForm;

    @ApiModelProperty(value = "建成日期")
    @TableField("FINISH_DAY_")
    private String finishDay;

    @ApiModelProperty(value = "用途")
    @TableField("USES_")
    private String uses;

    @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 = "中心桩号KM")
    @TableField("CENT_PEG_K_")
    private String centPegK;

    @ApiModelProperty(value = "匝道桩号KM")
    @TableField("RAMP_PEG_K_")
    private String rampPegK;

    @ApiModelProperty(value = "出口形式值")
    @TableField("EXIT_FORM_VALUE_")
    private String exitFormValue;

    @ApiModelProperty(value = "用途值")
    @TableField("USES_VALUE_")
    private String usesValue;

    @ApiModelProperty(value = "中心桩号KM")
    @TableField("CENT_PEG_AND_RAMP_PEG_K_")
    private String centPegAndRampPegK;

    @ApiModelProperty(value = "洞身材料值")
    @TableField("BODY_MATERIAL_VALUE_")
    private String bodyMaterialValue;

    @ApiModelProperty(value = "洞顶材料值")
    @TableField("TOP_MATERIAL_VALUE_")
    private String topMaterialValue;

    @ApiModelProperty(value = "入口材料值")
    @TableField("ENTRANCE_MATERIAL_VALUE_")
    private String entranceMaterialValue;

    @ApiModelProperty(value = "入口形式值")
    @TableField("ENTRANCE_FORM_VALUE_")
    private String entranceFormValue;

    @ApiModelProperty(value = "出口材料值")
    @TableField("EXIT_MATERIAL_VALUE_")
    private String exitMaterialValue;

    @ApiModelProperty(value = "版本号")
    @TableField("VERSION_")
    private Long version;

    @ApiModelProperty(value = "租户ID")
    @TableField("TENANT_ID_")
    private String tenantId;

    @ApiModelProperty(value = "交叉角度")
    @TableField("CROSS_ANGLE_")
    private String crossAngle;

    @ApiModelProperty(value = "所属行政区")
    @TableField("ADMINISTRATIVE_REGION_")
    private String administrativeRegion;

    @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;
}
