liusuyi
2026-05-30 f4f4fc53260eb67483dce406a963628273786a61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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;
 
}