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; /** *

* 泊位 *

* * @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; } }