You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
1.7 KiB
Java
85 lines
1.7 KiB
Java
|
1 month ago
|
package com.ruoyi.manager.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;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 航司代码对象 base_air_code
|
||
|
|
*
|
||
|
|
* @author ruoyi
|
||
|
|
* @date 2026-05-08
|
||
|
|
*/
|
||
|
|
public class BaseAirCode extends BaseEntity
|
||
|
|
{
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
/** 主键 */
|
||
|
|
private Long objid;
|
||
|
|
|
||
|
|
/** 航司名称 */
|
||
|
|
@Excel(name = "航司名称")
|
||
|
|
private String airName;
|
||
|
|
|
||
|
|
/** 代码 */
|
||
|
|
@Excel(name = "代码")
|
||
|
|
private String airCode;
|
||
|
|
|
||
|
|
/** 排序 */
|
||
|
|
@Excel(name = "排序")
|
||
|
|
private Long orderNum;
|
||
|
|
|
||
|
|
public void setObjid(Long objid)
|
||
|
|
{
|
||
|
|
this.objid = objid;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Long getObjid()
|
||
|
|
{
|
||
|
|
return objid;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setAirName(String airName)
|
||
|
|
{
|
||
|
|
this.airName = airName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getAirName()
|
||
|
|
{
|
||
|
|
return airName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setAirCode(String airCode)
|
||
|
|
{
|
||
|
|
this.airCode = airCode;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getAirCode()
|
||
|
|
{
|
||
|
|
return airCode;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setOrderNum(Long orderNum)
|
||
|
|
{
|
||
|
|
this.orderNum = orderNum;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Long getOrderNum()
|
||
|
|
{
|
||
|
|
return orderNum;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||
|
|
.append("objid", getObjid())
|
||
|
|
.append("airName", getAirName())
|
||
|
|
.append("airCode", getAirCode())
|
||
|
|
.append("orderNum", getOrderNum())
|
||
|
|
.append("updateBy", getUpdateBy())
|
||
|
|
.append("updateTime", getUpdateTime())
|
||
|
|
.toString();
|
||
|
|
}
|
||
|
|
}
|