package com.yssh.entity;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel(value = "Qxsh",description = "Qxsh")
|
public class Qxsh {
|
@ApiModelProperty(value = "主键")
|
private Integer id;
|
|
@ApiModelProperty(value = "名称")
|
private String name;
|
|
@ApiModelProperty(value = "经度")
|
private Double lon;
|
|
@ApiModelProperty(value = "纬度")
|
private Double lat;
|
|
@ApiModelProperty(value = "数值")
|
private Double value;
|
|
@ApiModelProperty(value = "时间")
|
private String time;
|
|
@ApiModelProperty(value = "是否存在溯源")
|
private Integer isSuYuan;
|
|
@ApiModelProperty(value = "是否存在快速溯源")
|
private Integer isFast;
|
|
public Qxsh() {
|
this.isSuYuan = 0;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Double getLon() {
|
return lon;
|
}
|
|
public void setLon(Double lon) {
|
this.lon = lon;
|
}
|
|
public Double getLat() {
|
return lat;
|
}
|
|
public void setLat(Double lat) {
|
this.lat = lat;
|
}
|
|
public Double getValue() {
|
return value;
|
}
|
|
public void setValue(Double value) {
|
this.value = value;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public Integer getIsSuYuan() {
|
return isSuYuan;
|
}
|
|
public void setIsSuYuan(Integer isSuYuan) {
|
this.isSuYuan = isSuYuan;
|
}
|
|
public Integer getIsFast() {
|
return isFast;
|
}
|
|
public void setIsFast(Integer isFast) {
|
this.isFast = isFast;
|
}
|
}
|