package com.ruoyi.buss.domain;
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
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_harbor
|
*
|
* @author lx
|
* @date 2025-03-14
|
*/
|
public class DmHarbor2 extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** */
|
@Excel(name = "")
|
private Long PKID;
|
|
/** */
|
@Excel(name = "")
|
private String harborName;
|
|
/** */
|
@Excel(name = "")
|
private Long deptId;
|
|
/** */
|
@Excel(name = "")
|
private String deptName;
|
|
/** */
|
@Excel(name = "")
|
private Long berthNo;
|
|
/** */
|
@Excel(name = "")
|
private Float oilB;
|
|
/** */
|
@Excel(name = "")
|
private Float oilG;
|
|
/** */
|
@Excel(name = "")
|
private Float oilA;
|
|
/** */
|
@Excel(name = "")
|
private Long ammoD;
|
|
/** */
|
@Excel(name = "")
|
private Long ammoP;
|
|
/** */
|
@Excel(name = "")
|
private Long ammoS;
|
|
/** */
|
@Excel(name = "")
|
private String delFlag;
|
|
/** */
|
@Excel(name = "")
|
private String DOCKNAME;
|
|
/** */
|
@Excel(name = "")
|
private Float WATER;
|
|
/** */
|
@Excel(name = "")
|
private Float MATERIAL;
|
|
/** */
|
@Excel(name = "")
|
private Long ammoO;
|
|
private Integer vehicleCount; // VEHICLE_COUNT
|
|
private String roadConditions;
|
|
/** */
|
@Excel(name = "")
|
private Double draft;
|
|
@JsonIgnore
|
private Double allocatedOilA;
|
|
@JsonIgnore
|
private Integer allocatedShipCount;
|
|
public void setPKID(Long PKID)
|
{
|
this.PKID = PKID;
|
}
|
|
public Long getPKID()
|
{
|
return PKID;
|
}
|
|
public String getHarborName() {
|
return harborName;
|
}
|
|
public void setHarborName(String harborName) {
|
this.harborName = harborName;
|
}
|
|
public void setDeptId(Long deptId)
|
{
|
this.deptId = deptId;
|
}
|
|
public Long getDeptId()
|
{
|
return deptId;
|
}
|
|
public void setDeptName(String deptName)
|
{
|
this.deptName = deptName;
|
}
|
|
public String getDeptName()
|
{
|
return deptName;
|
}
|
|
public void setBerthNo(Long berthNo)
|
{
|
this.berthNo = berthNo;
|
}
|
|
public Long getBerthNo()
|
{
|
return berthNo;
|
}
|
|
public void setOilB(Float oilB)
|
{
|
this.oilB = oilB;
|
}
|
|
public Float getOilB()
|
{
|
return oilB;
|
}
|
|
public void setOilG(Float oilG)
|
{
|
this.oilG = oilG;
|
}
|
|
public Float getOilG()
|
{
|
return oilG;
|
}
|
|
public void setOilA(Float oilA)
|
{
|
this.oilA = oilA;
|
}
|
|
public Float getOilA()
|
{
|
return oilA;
|
}
|
|
public void setAmmoD(Long ammoD)
|
{
|
this.ammoD = ammoD;
|
}
|
|
public Long getAmmoD()
|
{
|
return ammoD;
|
}
|
|
public void setAmmoP(Long ammoP)
|
{
|
this.ammoP = ammoP;
|
}
|
|
public Long getAmmoP()
|
{
|
return ammoP;
|
}
|
|
public void setAmmoS(Long ammoS)
|
{
|
this.ammoS = ammoS;
|
}
|
|
public Long getAmmoS()
|
{
|
return ammoS;
|
}
|
|
public void setDelFlag(String delFlag)
|
{
|
this.delFlag = delFlag;
|
}
|
|
public String getDelFlag()
|
{
|
return delFlag;
|
}
|
|
public void setDOCKNAME(String DOCKNAME)
|
{
|
this.DOCKNAME = DOCKNAME;
|
}
|
|
public String getDOCKNAME()
|
{
|
return DOCKNAME;
|
}
|
|
public void setWATER(Float WATER)
|
{
|
this.WATER = WATER;
|
}
|
|
public Float getWATER()
|
{
|
return WATER;
|
}
|
|
public void setMATERIAL(Float MATERIAL)
|
{
|
this.MATERIAL = MATERIAL;
|
}
|
|
public Float getMATERIAL()
|
{
|
return MATERIAL;
|
}
|
|
public void setAmmoO(Long ammoO)
|
{
|
this.ammoO = ammoO;
|
}
|
|
public Long getAmmoO()
|
{
|
return ammoO;
|
}
|
|
public Double getAllocatedOilA() {
|
return allocatedOilA;
|
}
|
|
public void setAllocatedOilA(Double allocatedOilA) {
|
this.allocatedOilA = allocatedOilA;
|
}
|
|
public Integer getAllocatedShipCount() {
|
return allocatedShipCount;
|
}
|
|
public void setAllocatedShipCount(Integer allocatedShipCount) {
|
this.allocatedShipCount = allocatedShipCount;
|
}
|
|
public Integer getVehicleCount() {
|
return vehicleCount;
|
}
|
|
public void setVehicleCount(Integer vehicleCount) {
|
this.vehicleCount = vehicleCount;
|
}
|
|
public String getRoadConditions() {
|
return roadConditions;
|
}
|
|
public void setRoadConditions(String roadConditions) {
|
this.roadConditions = roadConditions;
|
}
|
|
public Double getDraft() {
|
return draft;
|
}
|
|
public void setDraft(Double draft) {
|
this.draft = draft;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("PKID", getPKID())
|
.append("harborName", getHarborName())
|
.append("deptId", getDeptId())
|
.append("deptName", getDeptName())
|
.append("berthNo", getBerthNo())
|
.append("oilB", getOilB())
|
.append("oilG", getOilG())
|
.append("oilA", getOilA())
|
.append("ammoD", getAmmoD())
|
.append("ammoP", getAmmoP())
|
.append("ammoS", getAmmoS())
|
.append("REMARK", getRemark())
|
.append("delFlag", getDelFlag())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("DOCKNAME", getDOCKNAME())
|
.append("WATER", getWATER())
|
.append("MATERIAL", getMATERIAL())
|
.append("ammoO", getAmmoO())
|
.toString();
|
}
|
}
|