| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 | package org.jeecg.modules.demo.hzz.shjsgc.xmxx.entity;import java.io.Serializable;import java.io.UnsupportedEncodingException;import java.util.Date;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.springframework.format.annotation.DateTimeFormat;import org.jeecgframework.poi.excel.annotation.Excel;import org.jeecg.common.aspect.annotation.Dict;import io.swagger.annotations.ApiModel;import io.swagger.annotations.ApiModelProperty;/** * @Description: 项目信息 * @Author: jeecg-boot * @Date:   2022-04-07 * @Version: V1.0 */@ApiModel(value="rm_xmxx对象", description="项目信息")@Data@TableName("rm_xmxx")public class RmXmxx 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 xmmc;	/**所在水系*/	@Excel(name = "所在水系", width = 15, dicCode = "shuixi")    @Dict(dicCode = "shuixi")    @ApiModelProperty(value = "所在水系")    private java.lang.String szsx;	/**行政区划*/	@Excel(name = "行政区划", width = 15)    @ApiModelProperty(value = "行政区划")    private java.lang.String xzqh;	/**项目负责人*/	@Excel(name = "项目负责人", width = 15)    @ApiModelProperty(value = "项目负责人")    private java.lang.String xmfzr;	/**县级区划代码*/	@Excel(name = "县级区划代码", width = 15)    @ApiModelProperty(value = "县级区划代码")    private java.lang.String xjqhdm;	/**横坐标*/	@Excel(name = "横坐标", width = 15)    @ApiModelProperty(value = "横坐标")    private java.lang.String hzb;	/**纵坐标*/	@Excel(name = "纵坐标", width = 15)    @ApiModelProperty(value = "纵坐标")    private java.lang.String zzb;	/**电话*/	@Excel(name = "电话", width = 15)    @ApiModelProperty(value = "电话")    private java.lang.String dha;	/**立项情况*/	@Excel(name = "立项情况", width = 15)    @ApiModelProperty(value = "立项情况")    private java.lang.String lxqk;	/**审批年度*/    @Excel(name = "审批年度", width = 15)    @ApiModelProperty(value = "审批年度")    private java.lang.String spnd;	/**防洪标准*/	@Excel(name = "防洪标准", width = 15)    @ApiModelProperty(value = "防洪标准")    private java.lang.String fhbz;	/**审批单位*/	@Excel(name = "审批单位", width = 15)    @ApiModelProperty(value = "审批单位")    private java.lang.String spdw;	/**审批级别*/	@Excel(name = "审批级别", width = 15)    @ApiModelProperty(value = "审批级别")    private java.lang.String spjb;	/**审批情况*/	@Excel(name = "审批情况", width = 15, dicCode = "spzt")    @Dict(dicCode = "spzt")    @ApiModelProperty(value = "审批情况")    private java.lang.String spqk;	/**总体布置简述*/	@Excel(name = "总体布置简述", width = 15)    @ApiModelProperty(value = "总体布置简述")    private java.lang.String ztbzjs;	/**建设状态*/	@Excel(name = "建设状态", width = 15, dicCode = "gcjsqk")    @Dict(dicCode = "gcjsqk")    @ApiModelProperty(value = "建设状态")    private java.lang.String jszt;	/**其他*/	@Excel(name = "其他", width = 15)    @ApiModelProperty(value = "其他")    private java.lang.String qt;    /**外键*/    @ApiModelProperty(value = "外键")    private java.lang.String min_id;}
 |