d963117b68e3f4c8c26dfd071184fea631835e36.svn-base 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package org.jeecg.modules.demo.hzz.yhyc.entity;
  2. import java.io.Serializable;
  3. import java.io.UnsupportedEncodingException;
  4. import java.util.Date;
  5. import com.baomidou.mybatisplus.annotation.IdType;
  6. import com.baomidou.mybatisplus.annotation.TableId;
  7. import com.baomidou.mybatisplus.annotation.TableLogic;
  8. import com.baomidou.mybatisplus.annotation.TableName;
  9. import org.jeecgframework.poi.excel.annotation.Excel;
  10. import lombok.Data;
  11. import com.fasterxml.jackson.annotation.JsonFormat;
  12. import org.springframework.format.annotation.DateTimeFormat;
  13. import org.jeecg.common.aspect.annotation.Dict;
  14. import io.swagger.annotations.ApiModel;
  15. import io.swagger.annotations.ApiModelProperty;
  16. /**
  17. * @Description: 基本信息表
  18. * @Author: jeecg-boot
  19. * @Date: 2021-11-26
  20. * @Version: V1.0
  21. */
  22. @Data
  23. @TableName("rm_jbxx")
  24. @ApiModel(value="rm_jbxx对象", description="基本信息表")
  25. public class RmJbxx implements Serializable {
  26. private static final long serialVersionUID = 1L;
  27. /**主键*/
  28. @TableId(type = IdType.ASSIGN_ID)
  29. @ApiModelProperty(value = "主键")
  30. private java.lang.String id;
  31. /**创建人*/
  32. @ApiModelProperty(value = "创建人")
  33. private java.lang.String createBy;
  34. /**创建日期*/
  35. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
  36. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  37. @ApiModelProperty(value = "创建日期")
  38. private java.util.Date createTime;
  39. /**更新人*/
  40. @ApiModelProperty(value = "更新人")
  41. private java.lang.String updateBy;
  42. /**更新日期*/
  43. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
  44. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  45. @ApiModelProperty(value = "更新日期")
  46. private java.util.Date updateTime;
  47. /**所属部门*/
  48. @ApiModelProperty(value = "所属部门")
  49. private java.lang.String sysOrgCode;
  50. /**河段名称*/
  51. @Excel(name = "河段名称", width = 15, dicCode = "hlmc")
  52. @Dict(dicCode = "hlmc")
  53. @ApiModelProperty(value = "河段名称")
  54. private java.lang.String hdmc;
  55. /**方案名称*/
  56. @Excel(name = "方案名称", width = 15)
  57. @ApiModelProperty(value = "方案名称")
  58. private java.lang.String famc;
  59. /**编制日期*/
  60. @Excel(name = "编制日期", width = 15, format = "yyyy-MM-dd")
  61. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
  62. @DateTimeFormat(pattern="yyyy-MM-dd")
  63. @ApiModelProperty(value = "编制日期")
  64. private java.util.Date bzrq;
  65. /**开始年份*/
  66. @Excel(name = "开始年月", width = 15, format = "yyyy-MM-dd")
  67. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
  68. @DateTimeFormat(pattern="yyyy-MM-dd")
  69. @ApiModelProperty(value = "开始年月")
  70. private java.util.Date ksnf;
  71. /**终止年份*/
  72. @Excel(name = "终止年月", width = 15, format = "yyyy-MM-dd")
  73. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
  74. @DateTimeFormat(pattern="yyyy-MM-dd")
  75. @ApiModelProperty(value = "终止年月")
  76. private java.util.Date zznf;
  77. /**编制单位*/
  78. @Excel(name = "编制单位", width = 15)
  79. @ApiModelProperty(value = "编制单位")
  80. private java.lang.String bzdw;
  81. /**备注*/
  82. @Excel(name = "备注", width = 15)
  83. @ApiModelProperty(value = "备注")
  84. private java.lang.String bz;
  85. /**文本方案*/
  86. @Excel(name = "文本方案", width = 15)
  87. @ApiModelProperty(value = "文本方案")
  88. private java.lang.String wbfa;
  89. /**相关图件*/
  90. @Excel(name = "相关图件", width = 15)
  91. @ApiModelProperty(value = "相关图件")
  92. private java.lang.String xgtj;
  93. @TableLogic
  94. private String del_flag;
  95. }