40 lines
941 B
Java
40 lines
941 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 org.apache.commons.lang3.builder.ToStringBuilder;
|
|||
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 航线分组
|
|||
|
|
*
|
|||
|
|
* @author 拓恒
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
public class AirlineFileGroup extends ExBaseEntity {
|
|||
|
|
/**
|
|||
|
|
* 用户ID
|
|||
|
|
*/
|
|||
|
|
private Long groupId;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 分组名称
|
|||
|
|
*/
|
|||
|
|
private String groupName;
|
|||
|
|
/**
|
|||
|
|
* 用户ID,分组自带用户归属。 后期权限都是基于用户ID进行
|
|||
|
|
*/
|
|||
|
|
private Long userId;
|
|||
|
|
|
|||
|
|
|
|||
|
|
@Override
|
|||
|
|
public String toString() {
|
|||
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|||
|
|
.append("groupId", getGroupId())
|
|||
|
|
.append("groupName", getGroupName())
|
|||
|
|
.append("userId", getUserId())
|
|||
|
|
.toString();
|
|||
|
|
}
|
|||
|
|
}
|