This commit is contained in:
孙小云 2026-02-11 14:49:18 +08:00
commit deab72f3cd
1 changed files with 8 additions and 3 deletions

View File

@ -35,12 +35,17 @@ public class AirlineFileGroupVO extends BaseEntity {
*/
private List<AirlineFileVO> groupInfos;
/**
* 航线数量
*/
private Integer airlineCount;
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("groupId", getGroupId())
.append("groupName", getGroupName())
.append("userId", getUserId())
.append("groupId", groupId)
.append("groupName", groupName)
.append("userId", userId)
.toString();
}
}