| package com.ruoyi.alarmpoints.tube.domain; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| 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; | 
|   | 
| /** | 
|  * 管线详细对象 ard_tubes_details | 
|  *  | 
|  * @author 刘苏义 | 
|  * @date 2023-03-13 | 
|  */ | 
| @Data | 
| public class ArdTubesDetails extends BaseEntity | 
| { | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     /** id */ | 
|     private String id; | 
|   | 
|     /** 卷号 */ | 
|     @Excel(name = "管线编号") | 
|     private String reelNumber; | 
|   | 
|     /** 拐点编号 */ | 
|     @Excel(name = "拐点号") | 
|     private String inflectionPointNumber; | 
|   | 
|     /** 经度 */ | 
|     @Excel(name = "经度") | 
|     private Double longitude; | 
|   | 
|     /** 纬度 */ | 
|     @Excel(name = "纬度") | 
|     private Double latitude; | 
|   | 
|     /** 高层 */ | 
|     @Excel(name = "高程") | 
|     private Double altitude; | 
|   | 
|     /** 深度 */ | 
|     @Excel(name = "埋深") | 
|     private Double depth; | 
|   | 
|     /** 管线ID */ | 
|     private String tubeId; | 
|   | 
|     /** 用户id */ | 
|     @ApiModelProperty(hidden = true) | 
|     private String userId; | 
|   | 
|     /** 部门id */ | 
|     @ApiModelProperty(hidden = true) | 
|     private Long deptId; | 
|   | 
| } |