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_dd_config
|
*
|
* @author lx
|
* @date 2025-03-14
|
*/
|
public class DmDdConfig extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** */
|
@Excel(name = "")
|
private Long PKID;
|
|
/** */
|
@Excel(name = "")
|
private String TYPE;
|
|
/** */
|
@Excel(name = "")
|
private String UNIT;
|
|
/** */
|
@Excel(name = "")
|
private String shipType;
|
|
/** */
|
@Excel(name = "")
|
private Double TIME;
|
|
public void setPKID(Long PKID)
|
{
|
this.PKID = PKID;
|
}
|
|
public Long getPKID()
|
{
|
return PKID;
|
}
|
|
public void setTYPE(String TYPE)
|
{
|
this.TYPE = TYPE;
|
}
|
|
public String getTYPE()
|
{
|
return TYPE;
|
}
|
|
public void setUNIT(String UNIT)
|
{
|
this.UNIT = UNIT;
|
}
|
|
public String getUNIT()
|
{
|
return UNIT;
|
}
|
|
public void setShipType(String shipType)
|
{
|
this.shipType = shipType;
|
}
|
|
public String getShipType()
|
{
|
return shipType;
|
}
|
|
public void setTIME(Double TIME)
|
{
|
this.TIME = TIME;
|
}
|
|
public Double getTIME()
|
{
|
return TIME;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("PKID", getPKID())
|
.append("TYPE", getTYPE())
|
.append("UNIT", getUNIT())
|
.append("shipType", getShipType())
|
.append("TIME", getTIME())
|
.append("REMARK", getRemark())
|
.toString();
|
}
|
}
|