feat:增加标注分组
This commit is contained in:
parent
608f9e1ffd
commit
618012c9d4
|
|
@ -19,12 +19,12 @@ public class AirlineMarkerGroupVO extends BaseEntity {
|
||||||
/**
|
/**
|
||||||
* 分组ID
|
* 分组ID
|
||||||
*/
|
*/
|
||||||
private Long groupId;
|
private Long id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分组名称
|
* 分组名称
|
||||||
*/
|
*/
|
||||||
private String groupName;
|
private String name;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 组关联的标注
|
* 组关联的标注
|
||||||
|
|
@ -39,8 +39,8 @@ public class AirlineMarkerGroupVO extends BaseEntity {
|
||||||
@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("id", getId())
|
||||||
.append("groupName", getGroupName())
|
.append("name", getName())
|
||||||
.append("markerCount", getMarkerCount())
|
.append("markerCount", getMarkerCount())
|
||||||
.toString();
|
.toString();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue