| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 | package org.jeecg.modules.demo.hzz.shjsgc.xmrk.entity;import java.io.Serializable;import com.baomidou.mybatisplus.annotation.IdType;import com.baomidou.mybatisplus.annotation.TableId;import com.baomidou.mybatisplus.annotation.TableName;import org.jeecg.common.aspect.annotation.Dict;import lombok.Data;import com.fasterxml.jackson.annotation.JsonFormat;import org.springframework.format.annotation.DateTimeFormat;import org.jeecgframework.poi.excel.annotation.Excel;import java.util.Date;import io.swagger.annotations.ApiModel;import io.swagger.annotations.ApiModelProperty;import java.io.UnsupportedEncodingException;/** * @Description: 涉河部分工程信息 * @Author: jeecg-boot * @Date: 2022-03-31 * @Version: V1.0 */@Data@TableName("rm_axshbfgcxxb")@ApiModel(value = "rm_axshbfgcxxb对象", description = "涉河部分工程信息")public class RmAxshbfgcxxb implements Serializable {    private static final long serialVersionUID = 1L;    /**     * 主键     */    @TableId(type = IdType.ASSIGN_ID)    @ApiModelProperty(value = "主键")    private String id;    /**     * 创建人     */    @ApiModelProperty(value = "创建人")    private String createBy;    /**     * 创建日期     */    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")    @ApiModelProperty(value = "创建日期")    private Date createTime;    /**     * 更新人     */    @ApiModelProperty(value = "更新人")    private String updateBy;    /**     * 更新日期     */    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")    @ApiModelProperty(value = "更新日期")    private Date updateTime;    /**     * 所属部门     */    @ApiModelProperty(value = "所属部门")    private String sysOrgCode;    /**     * 工程名称     */    @Excel(name = "工程名称", width = 15)    @ApiModelProperty(value = "工程名称")    private String gcmc;    /**     * 工程位置     */    @Excel(name = "工程位置", width = 15)    @ApiModelProperty(value = "工程位置")    private String gcwz;    /**     * 涉及河段     */    @Excel(name = "涉及河段", width = 15)    @ApiModelProperty(value = "涉及河段")    private String sjhd;    /**     * 涉河类型     */    @Excel(name = "涉河类型", width = 15, dicCode = "id", dictTable = "sys_category", dicText = "name")    @Dict(dicCode = "id", dictTable = "sys_category", dicText = "name")    @ApiModelProperty(value = "涉河类型")    private String shlx;    /**     * 经度     */    @Excel(name = "经度", width = 15)    @ApiModelProperty(value = "经度")    private String jd;    /**     * 纬度     */    @Excel(name = "纬度", width = 15)    @ApiModelProperty(value = "纬度")    private String wd;    /**     * 工程布置简况     */    @Excel(name = "工程布置简况", width = 15)    @ApiModelProperty(value = "工程布置简况")    private String gcbzqk;    /**     * 建设状态     */    @Excel(name = "建设状态", width = 15)    @Dict(dicCode = "gcjsqk")    @ApiModelProperty(value = "建设状态")    private String jszt;    /**     * 工期开始日期     */    @Excel(name = "工期开始日期", width = 15, format = "yyyy年MM月dd")    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")    @DateTimeFormat(pattern = "yyyy-MM-dd")    @ApiModelProperty(value = "工期开始日期")    private Date gqksrq;    /**     * 工期结束日期     */    @Excel(name = "工期结束日期", width = 15, format = "yyyy年MM月dd日")    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")    @DateTimeFormat(pattern = "yyyy-MM-dd")    @ApiModelProperty(value = "工期结束日期")    private Date gqjsrq;    /**     * 河道岸线利用情况     */    @Excel(name = "河道岸线利用情况", width = 15)    @ApiModelProperty(value = "河道岸线利用情况")    private String hdaxlyqk;    /**     * 河道岸线占用长度     */    @Excel(name = "河道岸线占用长度", width = 15)    @ApiModelProperty(value = "河道岸线占用长度")    private String hdaxzycd;    /**     * 河道岸线占用面积     */    @Excel(name = "河道岸线占用面积", width = 15)    @ApiModelProperty(value = "河道岸线占用面积")    private String hdaxzymj;    /**     * 占用河道管理范围情况     */    @Excel(name = "占用河道管理范围情况", width = 15)    @ApiModelProperty(value = "占用河道管理范围情况")    private String zyhdglfw;    /**     * 建设期临时设施情况     */    @Excel(name = "建设期临时设施情况", width = 15)    @ApiModelProperty(value = "建设期临时设施情况")    private String jsqlsssqk;    /**     * 现场联系人     */    @Excel(name = "现场联系人", width = 15)    @ApiModelProperty(value = "现场联系人")    private String xclxr;    /**     * 电话     */    @Excel(name = "电话", width = 15)    @ApiModelProperty(value = "电话")    private String dh;    /**     * 其他     */    @Excel(name = "其他", width = 15)    @ApiModelProperty(value = "其他")    private String qt;    /**     * 主键     */    @ApiModelProperty(value = "主键")    private String mainId;    /**     * geoinfo     */    @Excel(name = "geoinfo", width = 15)    @ApiModelProperty(value = "geoinfo")    private String geoinfo;}
 |