package com.ruoyi.buss.domain; 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; /** * 泊位信息对象 dm_berth * * @author lx * @date 2025-03-14 */ public class DmBerth2 extends BaseEntity { private static final long serialVersionUID = 1L; /** */ @Excel(name = "") private Long PKID; /** */ @Excel(name = "") private String NAME; /** */ @Excel(name = "") private Long harborId; /** */ @Excel(name = "") private String harborName; /** */ @Excel(name = "") private Long berthLen; /** */ @Excel(name = "") private Long DEPTH; /** */ @Excel(name = "") private String STATUS; /** */ @Excel(name = "") private Long orderNum; /** */ @Excel(name = "") private String delFlag; private Long deptId; private String path; public void setPKID(Long PKID) { this.PKID = PKID; } public Long getPKID() { return PKID; } public void setNAME(String NAME) { this.NAME = NAME; } public String getNAME() { return NAME; } public void setHarborId(Long harborId) { this.harborId = harborId; } public Long getHarborId() { return harborId; } public void setHarborName(String harborName) { this.harborName = harborName; } public String getHarborName() { return harborName; } public void setBerthLen(Long berthLen) { this.berthLen = berthLen; } public Long getBerthLen() { return berthLen; } public void setDEPTH(Long DEPTH) { this.DEPTH = DEPTH; } public Long getDEPTH() { return DEPTH; } public void setSTATUS(String STATUS) { this.STATUS = STATUS; } public String getSTATUS() { return STATUS; } public void setOrderNum(Long orderNum) { this.orderNum = orderNum; } public Long getOrderNum() { return orderNum; } public void setDelFlag(String delFlag) { this.delFlag = delFlag; } public String getDelFlag() { return delFlag; } public Long getDeptId() { return deptId; } public void setDeptId(Long deptId) { this.deptId = deptId; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } @Override public String toString() { return "DmBerth2 =: {" + "PKID=" + PKID + ", NAME='" + NAME + '\'' + ", harborId=" + harborId + ", harborName='" + harborName + '\'' + ", berthLen=" + berthLen + ", DEPTH=" + DEPTH + ", STATUS='" + STATUS + '\'' + ", orderNum=" + orderNum + ", delFlag='" + delFlag + '\'' + ", deptId=" + deptId + '}'; } }