2026-01-23 18:42:11 +08:00
|
|
|
|
package com.ruoyi.airline.mapper.entity;
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 航线分组表 airline_group(
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author 拓恒
|
|
|
|
|
|
*/
|
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
|
@Data
|
|
|
|
|
|
public class AirlineFileGroupEntity extends ExBaseEntity {
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 用户ID
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Long groupId;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 分组名称
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String groupName;
|
|
|
|
|
|
|
2026-02-11 13:12:13 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 航线数量
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer airlineCount;
|
|
|
|
|
|
|
2026-01-23 18:42:11 +08:00
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
public String toString() {
|
|
|
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
|
.append("groupId", getGroupId())
|
|
|
|
|
|
.append("groupName", getGroupName())
|
|
|
|
|
|
.toString();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|