13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
60
61
62
63
package com.ruoyi.manage.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import lombok.Getter;
import lombok.Setter;
 
/**
 * <p>
 * 码头
 * </p>
 *
 * @author zhangyy
 * @since 2025-03-11
 */
@Getter
@Setter
@TableName("DP_WHARF")
//@ApiModel(value = "DpWharf对象", description = "码头")
public class DpWharf {
 
    @TableId(value = "WH_ID", type = IdType.AUTO)
    private Integer whId;
 
    @TableField("NAME")
    private String name;
 
    @TableField("HEIGHT")
    private Double height;
 
    @TableField("HEADING")
    private Double heading;
 
    @TableField("PITCH")
    private Double pitch;
 
    @TableField("ROLL")
    private Double roll;
 
    @TableField("LATITUDE")
    private Double latitude;
 
    @TableField("LONGITUDE")
    private Double longitude;
 
    @TableField("POINT_X")
    private Double pointX;
 
    @TableField("POINT_Y")
    private Double pointY;
 
    @TableField(exist = false)
    private Integer pageSize;
 
 
    @TableField(exist = false)
    private Integer pageNum;
 
 
}