| | |
| | | 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.BaseEntity; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.io.Serializable; |
| | | import java.sql.Timestamp; |
| | | |
| | | /** |
| | | * 管道成果表 |
| | |
| | | @AllArgsConstructor |
| | | @TableName("md.md_gdcg") |
| | | @ExcelHead(headRows = 3,excludeSheets = "封面,目录") |
| | | public class MdGdcgEntity implements Serializable { |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class MdGdcgEntity extends BaseEntity implements Serializable { |
| | | private static final long serialVersionUID = -221347663194025408L; |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer gid; |
| | | |
| | | @ExcelProperty(index = 0) |
| | | private String bh; |
| | |
| | | |
| | | @ExcelProperty(index = 17) |
| | | private String bz; |
| | | |
| | | private Integer createUser; |
| | | |
| | | private Timestamp createTime; |
| | | |
| | | private Integer updateUser; |
| | | |
| | | private Timestamp updateTime; |
| | | |
| | | public String getBh() { |
| | | return bh; |
| | |
| | | |
| | | public void setBz(String bz) { |
| | | this.bz = bz; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | } |