package com.yssh.entity;
|
|
import java.io.Serializable;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author wMeng
|
* @ClassName YsshLocation
|
* @Description 厂区热点点位
|
* @date 2022/10/30 13:16
|
* @Version 1.0
|
*/
|
@Data
|
@ApiModel(value = "厂区热点点位",description = "厂区热点点位")
|
public class Location implements Serializable{
|
|
private static final long serialVersionUID = -2728687771987124891L;
|
|
@ApiModelProperty(value = "主键")
|
private int id;
|
@ApiModelProperty(value = "点位名称")
|
private String name;
|
@ApiModelProperty(value = "点位类型")
|
private String type;
|
@ApiModelProperty(value = "点位经度")
|
private float lon;
|
@ApiModelProperty(value = "点位纬度")
|
private float lat;
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public float getLon() {
|
return lon;
|
}
|
|
public void setLon(float lon) {
|
this.lon = lon;
|
}
|
|
public float getLat() {
|
return lat;
|
}
|
|
public void setLat(float lat) {
|
this.lat = lat;
|
}
|
}
|