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;
|
|
/**
|
* Thprovincepoint
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bs.th_province_point")
|
@EqualsAndHashCode(callSuper = false)
|
public class ThprovincepointEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 921372577511413376L;
|
|
private String cname;
|
|
private String clasid;
|
|
private String gb;
|
|
public ThprovincepointEntity() {
|
}
|
|
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;
|
}
|
}
|