package com.yssh.entity;
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import com.github.biyanwen.annotation.CsvProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.io.Serializable;
|
|
public class VocCoords implements Serializable {
|
private static final long serialVersionUID = -20230606150000000L;
|
|
@JsonIgnore
|
@ApiModelProperty(value = "主键")
|
private Integer id;
|
|
@CsvProperty(index = 0)
|
@ApiModelProperty(value = "X")
|
private Integer x;
|
|
@CsvProperty(index = 1)
|
@ApiModelProperty(value = "Y")
|
private Integer y;
|
|
@CsvProperty(index = 2)
|
@ApiModelProperty(value = "地址")
|
private String addr;
|
|
public VocCoords() {
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getX() {
|
return x;
|
}
|
|
public void setX(Integer x) {
|
this.x = x;
|
}
|
|
public Integer getY() {
|
return y;
|
}
|
|
public void setY(Integer y) {
|
this.y = y;
|
}
|
|
public String getAddr() {
|
return addr;
|
}
|
|
public void setAddr(String addr) {
|
this.addr = addr;
|
}
|
}
|