package com.ld.igds.oa.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* GPS位置数据封装
|
*
|
* @author:
|
* @description:
|
* @version:
|
* @data:
|
*
|
*/
|
@Data
|
public class GpsLocationData implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@PropertyDef(label = "经度")
|
private String longitude;
|
|
@PropertyDef(label = "纬度")
|
private String latitude;
|
|
@PropertyDef(label = "位置数据id")
|
private String recordId;
|
|
@PropertyDef(label = "组织编码")
|
private String companyId;
|
|
@PropertyDef(label = "IP地址")
|
private String ip;
|
|
@PropertyDef(label = "端口号")
|
private Integer port;
|
|
@PropertyDef(label = "更新时间")
|
private Date updateTime;
|
|
@PropertyDef(label = "设备手机号")
|
private String phone;
|
|
@PropertyDef(label = "鉴权码")
|
private String sn;
|
}
|