feat:调整查询航线分组查询接口

This commit is contained in:
gyb 2026-02-26 17:33:13 +08:00
parent 13e98cbcdb
commit e72d969862
1 changed files with 0 additions and 5 deletions

View File

@ -25,10 +25,6 @@ public class AirlineFileGroupVO extends BaseEntity {
* 分组名称
*/
private String groupName;
/**
* 用户ID分组自带用户归属 后期权限都是基于用户ID进行
*/
private Long userId;
/**
* 组关联的航线
@ -45,7 +41,6 @@ public class AirlineFileGroupVO extends BaseEntity {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("groupId", groupId)
.append("groupName", groupName)
.append("userId", userId)
.toString();
}
}