package com.ard.work.api.domian; import com.ard.common.core.annotation.Excel; import com.ard.common.core.web.domain.BaseEntity; import lombok.Data; /** * 管材详细信息管理对象 ard_tubes_details * * @author XiaJiJian * @date 2024-09-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 */ private String userId; /** 部门id */ private Long deptId; }