1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package org.jeecg.modules.demo.hzz.yhyc.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.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import org.jeecgframework.poi.excel.annotation.Excel;
- import lombok.Data;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.springframework.format.annotation.DateTimeFormat;
- import org.jeecg.common.aspect.annotation.Dict;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * @Description: 基本信息表
- * @Author: jeecg-boot
- * @Date: 2021-11-26
- * @Version: V1.0
- */
- @Data
- @TableName("rm_jbxx")
- @ApiModel(value="rm_jbxx对象", description="基本信息表")
- public class RmJbxx 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, dicCode = "hlmc")
- @Dict(dicCode = "hlmc")
- @ApiModelProperty(value = "河段名称")
- private java.lang.String hdmc;
- /**方案名称*/
- @Excel(name = "方案名称", width = 15)
- @ApiModelProperty(value = "方案名称")
- private java.lang.String famc;
- /**编制日期*/
- @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 bzrq;
- /**开始年份*/
- @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 ksnf;
- /**终止年份*/
- @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 zznf;
- /**编制单位*/
- @Excel(name = "编制单位", width = 15)
- @ApiModelProperty(value = "编制单位")
- private java.lang.String bzdw;
- /**备注*/
- @Excel(name = "备注", width = 15)
- @ApiModelProperty(value = "备注")
- private java.lang.String bz;
- /**文本方案*/
- @Excel(name = "文本方案", width = 15)
- @ApiModelProperty(value = "文本方案")
- private java.lang.String wbfa;
- /**相关图件*/
- @Excel(name = "相关图件", width = 15)
- @ApiModelProperty(value = "相关图件")
- private java.lang.String xgtj;
- @TableLogic
- private String del_flag;
- }
|