‘liusuyi’
2023-06-14 7340977c8326c27ec484a815131bff03ad0468c5
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
55
56
57
58
59
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;
 
}