张天森
2022-12-08 79e0d3094c1fcf9025938479b6e46d2e9dfebdb6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.panzhihua.common.model.vos.grid;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 地图模块-网格员运动轨迹返回参数
 */
@Data
@ApiModel("地图模块-网格员运动轨迹返回参数")
public class EventMapTrajectoryVO {
 
    @ApiModelProperty("运动轨迹id")
    private Long id;
 
    @ApiModelProperty("运动轨迹经纬度")
    private String lngLat;
 
}