42 lines
959 B
Java
42 lines
959 B
Java
package com.ruoyi.airline.domain.model;
|
||
|
||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||
import com.ruoyi.common.core.web.domain.ExBaseEntity;
|
||
import lombok.Data;
|
||
import lombok.EqualsAndHashCode;
|
||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||
|
||
/**
|
||
* 航线分组明细
|
||
*
|
||
* @author 拓恒
|
||
*/
|
||
@EqualsAndHashCode(callSuper = true)
|
||
@Data
|
||
public class AirlineFileGroupInfo extends ExBaseEntity {
|
||
/**
|
||
* id,主键,用于order by 排序
|
||
*/
|
||
private Long id;
|
||
/**
|
||
* 用户ID
|
||
*/
|
||
private Long groupId;
|
||
|
||
/**
|
||
* 航线id
|
||
*/
|
||
private Long airlineId;
|
||
|
||
|
||
@Override
|
||
public String toString() {
|
||
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
||
.append("id", getId())
|
||
.append("groupId", getGroupId())
|
||
.append("airlineId", getAirlineId())
|
||
.toString();
|
||
}
|
||
}
|