22 lines
299 B
Plaintext
22 lines
299 B
Plaintext
|
|
package com.sercurityControl.proteam.newScreen.domain;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 地图标注数量
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
public class MapStatisVo {
|
||
|
|
|
||
|
|
private String lat;
|
||
|
|
|
||
|
|
private String lon;
|
||
|
|
|
||
|
|
private String num;
|
||
|
|
private String zjNum;
|
||
|
|
private String tcNum;
|
||
|
|
private String proType;
|
||
|
|
|
||
|
|
|
||
|
|
}
|