123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- package org.jeecg.modules.demo.hzz.yhyc.entity;
- import java.io.Serializable;
- 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.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: 2021-11-26
- * @Version: V1.0
- */
- @Data
- @TableName("rm_mbqd")
- @ApiModel(value="rm_mbqd对象", description="目标清单")
- public class RmMbqd 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)
- @Dict(dicCode = "lb")
- @ApiModelProperty(value = "目标类别")
- private java.lang.String mblb;
- /**指标分类*/
- @Excel(name = "指标分类", width = 15)
- @Dict(dicCode = "fl")
- @ApiModelProperty(value = "指标分类")
- private java.lang.String zbfl;
- /**主要指标*/
- @Excel(name = "主要指标", width = 15)
- @ApiModelProperty(value = "主要指标")
- private java.lang.String zyzb;
- /**指标现状*/
- @Excel(name = "指标现状", width = 15)
- @ApiModelProperty(value = "指标现状")
- private java.lang.String zbxz;
- /**指标预期*/
- @Excel(name = "指标预期", width = 15)
- @ApiModelProperty(value = "指标预期")
- private java.lang.String zbyq;
- /**所在地址*/
- @Excel(name = "所在地址", width = 15)
- @ApiModelProperty(value = "所在地址")
- private java.lang.String szdz;
- /**经度*/
- @Excel(name = "经度", width = 15)
- @ApiModelProperty(value = "经度")
- private java.lang.String jd;
- /**纬度*/
- @Excel(name = "纬度", width = 15)
- @ApiModelProperty(value = "纬度")
- private java.lang.String wd;
- /**第一年度*/
- @Excel(name = "第一年度", width = 15)
- @ApiModelProperty(value = "第一年度")
- private java.lang.String dynd;
- /**第二年度*/
- @Excel(name = "第二年度", width = 15)
- @ApiModelProperty(value = "第二年度")
- private java.lang.String dernd;
- /**第三年度*/
- @Excel(name = "第三年度", width = 15)
- @ApiModelProperty(value = "第三年度")
- private java.lang.String dsnd;
- /**责任部门*/
- @Excel(name = "责任部门", width = 15)
- @ApiModelProperty(value = "责任部门")
- private java.lang.String zrbm;
- /**意见/备注*/
- @Excel(name = "意见/备注", width = 15)
- @ApiModelProperty(value = "意见/备注")
- private java.lang.String yjbz;
- /**外键*/
- @ApiModelProperty(value = "外键")
- private java.lang.String mainId;
- @TableLogic
- private String del_flag;
- }
|