feat:增加标注分组

This commit is contained in:
gyb 2026-03-16 19:28:18 +08:00
parent 608f9e1ffd
commit 618012c9d4
1 changed files with 4 additions and 4 deletions

View File

@ -19,12 +19,12 @@ public class AirlineMarkerGroupVO extends BaseEntity {
/**
* 分组ID
*/
private Long groupId;
private Long id;
/**
* 分组名称
*/
private String groupName;
private String name;
/**
* 组关联的标注
@ -39,8 +39,8 @@ public class AirlineMarkerGroupVO extends BaseEntity {
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("groupId", getGroupId())
.append("groupName", getGroupName())
.append("id", getId())
.append("name", getName())
.append("markerCount", getMarkerCount())
.toString();
}