| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 | package org.jeecg.modules.demo.hzz.shjsgc.xmxx.entity;import java.io.Serializable;import com.baomidou.mybatisplus.annotation.IdType;import com.baomidou.mybatisplus.annotation.TableId;import com.baomidou.mybatisplus.annotation.TableName;import lombok.Data;import com.fasterxml.jackson.annotation.JsonFormat;import org.jeecg.common.aspect.annotation.Dict;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-04-07 * @Version: V1.0 */@ApiModel(value="rm_jgjl对象", description="监管记录")@Data@TableName("rm_jgjl")public class RmJgjl implements Serializable {    private static final long serialVersionUID = 1L;	/**主键*/	@TableId(type = IdType.ASSIGN_ID)    @ApiModelProperty(value = "主键")    private java.lang.String id;	/**创建人*/    @ApiModelProperty(value = "创建人")    private java.lang.String createBy;	/**创建日期*/	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")    @ApiModelProperty(value = "创建日期")    private java.util.Date createTime;	/**更新人*/    @ApiModelProperty(value = "更新人")    private java.lang.String updateBy;	/**更新日期*/	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")    @ApiModelProperty(value = "更新日期")    private java.util.Date updateTime;	/**所属部门*/    @ApiModelProperty(value = "所属部门")    private java.lang.String sysOrgCode;    /**检查名称*/    @Excel(name = "检查名称", width = 15)    @ApiModelProperty(value = "检查名称")    private java.lang.String jcmc;    /**检查时间*/    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")    @ApiModelProperty(value = "检查时间")    private java.util.Date jcsj;	/**建设项目名称*/	@Excel(name = "建设项目名称", width = 15)    @ApiModelProperty(value = "建设项目名称")    private java.lang.String jsxmmc;	/**建设项目ID*/	@Excel(name = "建设项目ID", width = 15)    @ApiModelProperty(value = "建设项目ID")    private java.lang.String jsxmid;	/**建设项目所在地*/	@Excel(name = "建设项目所在地", width = 15)    @ApiModelProperty(value = "建设项目所在地")    private java.lang.String jsxmszd;	/**开工日期*/	@Excel(name = "开工日期", width = 15, format = "yyyy-MM-dd")	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")    @DateTimeFormat(pattern="yyyy-MM-dd")    @ApiModelProperty(value = "开工日期")    private java.util.Date kgrq;	/**竣工日期*/	@Excel(name = "竣工日期", width = 15, format = "yyyy-MM-dd")	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")    @DateTimeFormat(pattern="yyyy-MM-dd")    @ApiModelProperty(value = "竣工日期")    private java.util.Date jgrq;	/**建设情况*/	@Excel(name = "建设情况", width = 15, dicCode = "gcjsqk")    @ApiModelProperty(value = "建设情况")    private java.lang.String jsqk;    /**监管单位*/    @Excel(name = "监管单位", width = 15, dicCode = "gcjsqk")    @ApiModelProperty(value = "监管单位")    private java.lang.String jgdw;    /**监管负责人*/    @Excel(name = "监管负责人", width = 15, dicCode = "gcjsqk")    @ApiModelProperty(value = "监管负责人")    private java.lang.String jgfzr;    /**施工现场是否符合要求*/    @Excel(name = "施工现场是否符合要求", width = 15, dicCode = "yn")    @Dict(dicCode = "yn")    @ApiModelProperty(value = "施工现场是否符合要求")    private java.lang.String sgxcsffhyq;	/**外键*/    @ApiModelProperty(value = "外键")    private java.lang.String mainId;	/**存在问题及处理情况*/	@Excel(name = "存在问题及处理情况", width = 15)    @ApiModelProperty(value = "存在问题及处理情况")    private java.lang.String czwtjclqk;	/**geoinfo*/	@Excel(name = "geoinfo", width = 15)    @ApiModelProperty(value = "geoinfo")    private java.lang.String geoinfo;}
 |