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;
|
|
/**
|
* Thstrategicchannel
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bs.th_strategic_channel")
|
@EqualsAndHashCode(callSuper = false)
|
public class ThstrategicchannelEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 921372577511413376L;
|
|
private String name;
|
|
private String remarks;
|
|
private Double shapeLength;
|
|
public ThstrategicchannelEntity() {
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
public Double getShapeLength() {
|
return shapeLength;
|
}
|
|
public void setShapeLength(Double shapeLength) {
|
this.shapeLength = shapeLength;
|
}
|
}
|