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; /** * Thdistrictline * @author WWW */ @Data @AllArgsConstructor @TableName("bs.th_district_line") @EqualsAndHashCode(callSuper = false) public class ThdistrictlineEntity extends BaseGeoEntity { private static final long serialVersionUID = 757752290348406912L; private String clasid; private Double shapeLength; public ThdistrictlineEntity() { } public String getClasid() { return clasid; } public void setClasid(String clasid) { this.clasid = clasid; } public Double getShapeLength() { return shapeLength; } public void setShapeLength(Double shapeLength) { this.shapeLength = shapeLength; } }