fit:触发构建

This commit is contained in:
gyb 2026-02-11 13:48:55 +08:00
parent 9a4fa70463
commit 89f8739c18
1 changed files with 6 additions and 0 deletions

View File

@ -29,6 +29,11 @@ public class AirlineFileGroup extends ExBaseEntity {
*/
private Long userId;
/**
* 航线数量
*/
private Integer airlineCount;
@Override
public String toString() {
@ -36,6 +41,7 @@ public class AirlineFileGroup extends ExBaseEntity {
.append("groupId", getGroupId())
.append("groupName", getGroupName())
.append("userId", getUserId())
.append("airlineCount", getAirlineCount())
.toString();
}
}