package com.terra.system.entity.mn;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.terra.system.entity.all.BaseGeoEntity;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
@Data
|
@AllArgsConstructor
|
@SuppressWarnings("ALL")
|
@TableName("mn.geo_section_line")
|
@EqualsAndHashCode(callSuper = false)
|
public class GeosectionlineEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 377736424271825920L;
|
|
private String sectname;
|
|
private String startPcode;
|
|
private String trunPcode;
|
|
private String endPcode;
|
|
private String angle;
|
|
private String datastatus;
|
|
private String remarks;
|
|
private String version;
|
|
private String datastage;
|
|
public GeosectionlineEntity() {
|
}
|
|
public String getSectname() {
|
return sectname;
|
}
|
|
public void setSectname(String sectname) {
|
this.sectname = sectname;
|
}
|
|
public String getStartPcode() {
|
return startPcode;
|
}
|
|
public void setStartPcode(String startPcode) {
|
this.startPcode = startPcode;
|
}
|
|
public String getTrunPcode() {
|
return trunPcode;
|
}
|
|
public void setTrunPcode(String trunPcode) {
|
this.trunPcode = trunPcode;
|
}
|
|
public String getEndPcode() {
|
return endPcode;
|
}
|
|
public void setEndPcode(String endPcode) {
|
this.endPcode = endPcode;
|
}
|
|
public String getAngle() {
|
return angle;
|
}
|
|
public void setAngle(String angle) {
|
this.angle = angle;
|
}
|
|
public String getDatastatus() {
|
return datastatus;
|
}
|
|
public void setDatastatus(String datastatus) {
|
this.datastatus = datastatus;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
public String getVersion() {
|
return version;
|
}
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
|
public String getDatastage() {
|
return datastage;
|
}
|
|
public void setDatastage(String datastage) {
|
this.datastage = datastage;
|
}
|
}
|