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
64
65
66
67
68
69
70
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 io.swagger.annotations.ApiModel;
//import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
/**
 * <p>
 * 泊位
 * </p>
 *
 * @author zhangyy
 * @since 2025-03-11
 */
@Getter
@Setter
@TableName("DP_BERTH")
//@ApiModel(value = "DpBerth对象", description = "泊位")
public class DpBerth {
 
    @TableId(value = "BE_ID", type = IdType.AUTO)
    private Integer beId;
 
    @TableField("WH_ID")
    private Integer whId;
 
    @TableField("BE_NAME")
    private String beName;
 
    @TableField(exist = false)
    private Integer pageSize;
 
    @TableField(exist = false)
    private Integer pageNum;
 
    @TableField(exist = false)
    private Integer offset;
 
    @TableField(exist = false)
    private String whName;
 
    public Integer getBeId() {
        return beId;
    }
 
    public void setBeId(Integer beId) {
        this.beId = beId;
    }
 
    public Integer getWhId() {
        return whId;
    }
 
    public void setWhId(Integer whId) {
        this.whId = whId;
    }
 
    public String getBeName() {
        return beName;
    }
 
    public void setBeName(String beName) {
        this.beName = beName;
    }
}