41 lines
874 B
Java
41 lines
874 B
Java
package com.ruoyi.airline.domain.model;
|
|
|
|
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 AirlineAreaGroupInfo extends ExBaseEntity {
|
|
/**
|
|
* id,主键
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 用户ID
|
|
*/
|
|
private Long groupId;
|
|
|
|
/**
|
|
* 空域id
|
|
*/
|
|
private Long areaId;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
.append("id", getId())
|
|
.append("groupId", getGroupId())
|
|
.append("areaId", getAreaId())
|
|
.toString();
|
|
}
|
|
}
|