| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 | package org.jeecg.modules.demo.hzz.hhhj.glfwx.entity;import java.io.Serializable;import java.io.UnsupportedEncodingException;import java.util.Date;import java.math.BigDecimal;import com.baomidou.mybatisplus.annotation.IdType;import com.baomidou.mybatisplus.annotation.TableId;import com.baomidou.mybatisplus.annotation.TableLogic;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;import lombok.EqualsAndHashCode;import lombok.experimental.Accessors;/** * @Description: rm_hhglfwx * @Author: jeecg-boot * @Date:   2021-12-29 * @Version: V1.0 */@Data@TableName("rm_hhglfwx")@Accessors(chain = true)@EqualsAndHashCode(callSuper = false)@ApiModel(value="rm_hhglfwx对象", description="rm_hhglfwx")public class RmHhglfwx implements Serializable {    private static final long serialVersionUID = 1L;	/**id*/	@TableId(type = IdType.ASSIGN_ID)    @ApiModelProperty(value = "id")    private java.lang.String id;	/**rvcd*/	@Excel(name = "rvcd", width = 15)    @ApiModelProperty(value = "rvcd")    private java.lang.String rvcd;	/**name*/	@Excel(name = "name", width = 15)    @ApiModelProperty(value = "name")    private java.lang.String name;	/**hhlx*/	@Excel(name = "hhlx", width = 15)    @ApiModelProperty(value = "hhlx")    private java.lang.String hhlx;	/**hhjb*/	@Excel(name = "hhjb", width = 15)    @ApiModelProperty(value = "hhjb")    private java.lang.String hhjb;	/**areaId*/	@Excel(name = "areaId", width = 15)    @ApiModelProperty(value = "areaId")    private java.math.BigDecimal areaId;	/**areaName*/	@Excel(name = "areaName", width = 15)    @ApiModelProperty(value = "areaName")    private java.lang.String areaName;	/**bak*/	@Excel(name = "bak", width = 15)    @ApiModelProperty(value = "bak")    private java.lang.String bak;	/**gclx*/	@Excel(name = "gclx", width = 15)    @ApiModelProperty(value = "gclx")    private java.lang.String gclx;    /**geoinfo*/    @ApiModelProperty(value = "geoinfo")    private java.lang.String geoinfo;	/**createBy*/    @ApiModelProperty(value = "createBy")    private java.lang.String createBy;	/**createTime*/	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")    @DateTimeFormat(pattern="yyyy-MM-dd")    @ApiModelProperty(value = "createTime")    private java.util.Date createTime;	/**updateBy*/    @ApiModelProperty(value = "updateBy")    private java.lang.String updateBy;	/**updateTime*/	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")    @DateTimeFormat(pattern="yyyy-MM-dd")    @ApiModelProperty(value = "updateTime")    private java.util.Date updateTime;	/**sysOrgCode*/    @ApiModelProperty(value = "sysOrgCode")    private java.lang.String sysOrgCode;    @TableLogic    private String del_flag;}
 |