package com.ruoyi.buss.domain;
|
|
import java.math.BigDecimal;
|
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_warship
|
*
|
* @author lx
|
* @date 2025-03-14
|
*/
|
public class DmWarship extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** */
|
@Excel(name = "")
|
private String shipNo;
|
|
/** */
|
@Excel(name = "")
|
private String shipType;
|
|
/** */
|
@Excel(name = "")
|
private BigDecimal TONNAGE;
|
|
/** */
|
@Excel(name = "")
|
private BigDecimal DRAFT;
|
|
/** */
|
@Excel(name = "")
|
private String LEADER;
|
|
/** */
|
@Excel(name = "")
|
private Long STAFF;
|
|
/** */
|
@Excel(name = "")
|
private String grpName;
|
|
/** */
|
@Excel(name = "")
|
private Long LEVEL;
|
|
/** */
|
@Excel(name = "")
|
private BigDecimal LAT;
|
|
/** */
|
@Excel(name = "")
|
private BigDecimal LON;
|
|
/** */
|
@Excel(name = "")
|
private String delFlag;
|
|
public void setShipNo(String shipNo)
|
{
|
this.shipNo = shipNo;
|
}
|
|
public String getShipNo()
|
{
|
return shipNo;
|
}
|
|
public void setShipType(String shipType)
|
{
|
this.shipType = shipType;
|
}
|
|
public String getShipType()
|
{
|
return shipType;
|
}
|
|
public void setTONNAGE(BigDecimal TONNAGE)
|
{
|
this.TONNAGE = TONNAGE;
|
}
|
|
public BigDecimal getTONNAGE()
|
{
|
return TONNAGE;
|
}
|
|
public void setDRAFT(BigDecimal DRAFT)
|
{
|
this.DRAFT = DRAFT;
|
}
|
|
public BigDecimal getDraft()
|
{
|
return DRAFT;
|
}
|
|
public void setLEADER(String LEADER)
|
{
|
this.LEADER = LEADER;
|
}
|
|
public String getLEADER()
|
{
|
return LEADER;
|
}
|
|
public void setSTAFF(Long STAFF)
|
{
|
this.STAFF = STAFF;
|
}
|
|
public Long getSTAFF()
|
{
|
return STAFF;
|
}
|
|
public void setGrpName(String grpName)
|
{
|
this.grpName = grpName;
|
}
|
|
public String getGrpName()
|
{
|
return grpName;
|
}
|
|
public void setLEVEL(Long LEVEL)
|
{
|
this.LEVEL = LEVEL;
|
}
|
|
public Long getLEVEL()
|
{
|
return LEVEL;
|
}
|
|
public void setLAT(BigDecimal LAT)
|
{
|
this.LAT = LAT;
|
}
|
|
public BigDecimal getLAT()
|
{
|
return LAT;
|
}
|
|
public void setLON(BigDecimal LON)
|
{
|
this.LON = LON;
|
}
|
|
public BigDecimal getLON()
|
{
|
return LON;
|
}
|
|
public void setDelFlag(String delFlag)
|
{
|
this.delFlag = delFlag;
|
}
|
|
public String getDelFlag()
|
{
|
return delFlag;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("shipNo", getShipNo())
|
.append("shipType", getShipType())
|
.append("TONNAGE", getTONNAGE())
|
.append("DRAFT", getDraft())
|
.append("LEADER", getLEADER())
|
.append("STAFF", getSTAFF())
|
.append("grpName", getGrpName())
|
.append("LEVEL", getLEVEL())
|
.append("LAT", getLAT())
|
.append("LON", getLON())
|
.append("delFlag", getDelFlag())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.toString();
|
}
|
}
|