| | |
| | | package com.lf.server.entity.md; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | 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; |
| | | |
| | | import java.io.Serializable; |
| | | import java.sql.Timestamp; |
| | | |
| | | /** |
| | | * 中线成果表 |
| | |
| | | @AllArgsConstructor |
| | | @TableName("md.md_zxcg") |
| | | @ExcelHead(headRows = 1) |
| | | public class MdZxcgEntity implements Serializable { |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class MdZxcgEntity extends BaseGeoEntity implements Serializable { |
| | | private static final long serialVersionUID = 686714648588893312L; |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer gid; |
| | | |
| | | @ExcelProperty(index = 0) |
| | | private String zh; |
| | |
| | | |
| | | @ExcelProperty(index = 5) |
| | | private Double z; |
| | | |
| | | private Integer createUser; |
| | | |
| | | private Timestamp createTime; |
| | | |
| | | private Integer updateUser; |
| | | |
| | | private Timestamp updateTime; |
| | | |
| | | public String getZh() { |
| | | return zh; |
| | |
| | | |
| | | public void setZ(Double z) { |
| | | this.z = z; |
| | | } |
| | | |
| | | public Integer getGid() { |
| | | return gid; |
| | | } |
| | | |
| | | public void setGid(Integer gid) { |
| | | this.gid = gid; |
| | | } |
| | | |
| | | public Integer getCreateUser() { |
| | | return createUser; |
| | | } |
| | | |
| | | public void setCreateUser(Integer createUser) { |
| | | this.createUser = createUser; |
| | | } |
| | | |
| | | public Timestamp getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Timestamp createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public Integer getUpdateUser() { |
| | | return updateUser; |
| | | } |
| | | |
| | | public void setUpdateUser(Integer updateUser) { |
| | | this.updateUser = updateUser; |
| | | } |
| | | |
| | | public Timestamp getUpdateTime() { |
| | | return updateTime; |
| | | } |
| | | |
| | | public void setUpdateTime(Timestamp updateTime) { |
| | | this.updateTime = updateTime; |
| | | } |
| | | } |