package com.lf.server.entity.ctrl;
|
|
import java.io.Serializable;
|
|
/**
|
* 标绘JSON实体类
|
* @author WWW
|
*/
|
public class MarkJsonEntity implements Serializable {
|
private static final long serialVersionUID = 7776629022021914001L;
|
|
private Integer id;
|
|
private String name;
|
|
private String wkt;
|
|
private String props;
|
|
public MarkJsonEntity() {
|
}
|
|
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 String getWkt() {
|
return wkt;
|
}
|
|
public void setWkt(String wkt) {
|
this.wkt = wkt;
|
}
|
|
public String getProps() {
|
return props;
|
}
|
|
public void setProps(String props) {
|
this.props = props;
|
}
|
}
|