package com.lf.server.entity.md;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.lf.server.annotation.ExcelHead;
|
import com.lf.server.entity.all.BaseGeoEntity;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.NoArgsConstructor;
|
|
/**
|
* 中线成果表
|
* @author WWW
|
*/
|
@Data
|
@NoArgsConstructor
|
@AllArgsConstructor
|
@TableName("md.md_zxcg")
|
@ExcelHead(headRows = 1)
|
@EqualsAndHashCode(callSuper = true)
|
public class MdzxcgEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 686714648588893312L;
|
|
@ExcelProperty(index = 0)
|
private String zh;
|
|
@ExcelProperty(index = 1)
|
private Double zj;
|
|
@ExcelProperty(index = 2)
|
private Double lc;
|
|
@ExcelProperty(index = 3)
|
private Double x;
|
|
@ExcelProperty(index = 4)
|
private Double y;
|
|
@ExcelProperty(index = 5)
|
private Double z;
|
|
public String getZh() {
|
return zh;
|
}
|
|
public void setZh(String zh) {
|
this.zh = zh;
|
}
|
|
public Double getZj() {
|
return zj;
|
}
|
|
public void setZj(Double zj) {
|
this.zj = zj;
|
}
|
|
public Double getLc() {
|
return lc;
|
}
|
|
public void setLc(Double lc) {
|
this.lc = lc;
|
}
|
|
public Double getX() {
|
return x;
|
}
|
|
public void setX(Double x) {
|
this.x = x;
|
}
|
|
public Double getY() {
|
return y;
|
}
|
|
public void setY(Double y) {
|
this.y = y;
|
}
|
|
public Double getZ() {
|
return z;
|
}
|
|
public void setZ(Double z) {
|
this.z = z;
|
}
|
}
|