package com.lf.server.entity.bs;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.lf.server.entity.all.BaseGeoEntity;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
import java.sql.Timestamp;
|
import java.time.LocalDate;
|
|
/**
|
* Thcountyarea
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bs.th_county_area")
|
@EqualsAndHashCode(callSuper = false)
|
public class ThcountyareaEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 757752290348406912L;
|
|
private String cname;
|
|
private String clasid;
|
|
private String gb;
|
|
private Double shapeLength;
|
|
public ThcountyareaEntity() {
|
}
|
|
public String getCname() {
|
return cname;
|
}
|
|
public void setCname(String cname) {
|
this.cname = cname;
|
}
|
|
public String getClasid() {
|
return clasid;
|
}
|
|
public void setClasid(String clasid) {
|
this.clasid = clasid;
|
}
|
|
public String getGb() {
|
return gb;
|
}
|
|
public void setGb(String gb) {
|
this.gb = gb;
|
}
|
|
public Double getShapeLength() {
|
return shapeLength;
|
}
|
|
public void setShapeLength(Double shapeLength) {
|
this.shapeLength = shapeLength;
|
}
|
}
|