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 List<AirlineFileVO> groupInfos;
/**
* 航线数量
*/
private Integer airlineCount;
@Override @Override
public String toString() { public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("groupId", getGroupId()) .append("groupId", groupId)
.append("groupName", getGroupName()) .append("groupName", groupName)
.append("userId", getUserId()) .append("userId", userId)
.toString(); .toString();
} }
} }