eb82d663b7df0e709d2b937941cc2305fddb0783.svn-base 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package org.jeecg.modules.demo.hzz.shjsgc.xmxx.entity;
  2. import java.io.Serializable;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import lombok.Data;
  7. import com.fasterxml.jackson.annotation.JsonFormat;
  8. import org.jeecg.common.aspect.annotation.Dict;
  9. import org.springframework.format.annotation.DateTimeFormat;
  10. import org.jeecgframework.poi.excel.annotation.Excel;
  11. import java.util.Date;
  12. import io.swagger.annotations.ApiModel;
  13. import io.swagger.annotations.ApiModelProperty;
  14. import java.io.UnsupportedEncodingException;
  15. /**
  16. * @Description: 监管记录
  17. * @Author: jeecg-boot
  18. * @Date: 2022-04-07
  19. * @Version: V1.0
  20. */
  21. @ApiModel(value="rm_jgjl对象", description="监管记录")
  22. @Data
  23. @TableName("rm_jgjl")
  24. public class RmJgjl implements Serializable {
  25. private static final long serialVersionUID = 1L;
  26. /**主键*/
  27. @TableId(type = IdType.ASSIGN_ID)
  28. @ApiModelProperty(value = "主键")
  29. private java.lang.String id;
  30. /**创建人*/
  31. @ApiModelProperty(value = "创建人")
  32. private java.lang.String createBy;
  33. /**创建日期*/
  34. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
  35. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  36. @ApiModelProperty(value = "创建日期")
  37. private java.util.Date createTime;
  38. /**更新人*/
  39. @ApiModelProperty(value = "更新人")
  40. private java.lang.String updateBy;
  41. /**更新日期*/
  42. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
  43. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  44. @ApiModelProperty(value = "更新日期")
  45. private java.util.Date updateTime;
  46. /**所属部门*/
  47. @ApiModelProperty(value = "所属部门")
  48. private java.lang.String sysOrgCode;
  49. /**检查名称*/
  50. @Excel(name = "检查名称", width = 15)
  51. @ApiModelProperty(value = "检查名称")
  52. private java.lang.String jcmc;
  53. /**检查时间*/
  54. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
  55. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  56. @ApiModelProperty(value = "检查时间")
  57. private java.util.Date jcsj;
  58. /**建设项目名称*/
  59. @Excel(name = "建设项目名称", width = 15)
  60. @ApiModelProperty(value = "建设项目名称")
  61. private java.lang.String jsxmmc;
  62. /**建设项目ID*/
  63. @Excel(name = "建设项目ID", width = 15)
  64. @ApiModelProperty(value = "建设项目ID")
  65. private java.lang.String jsxmid;
  66. /**建设项目所在地*/
  67. @Excel(name = "建设项目所在地", width = 15)
  68. @ApiModelProperty(value = "建设项目所在地")
  69. private java.lang.String jsxmszd;
  70. /**开工日期*/
  71. @Excel(name = "开工日期", width = 15, format = "yyyy-MM-dd")
  72. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
  73. @DateTimeFormat(pattern="yyyy-MM-dd")
  74. @ApiModelProperty(value = "开工日期")
  75. private java.util.Date kgrq;
  76. /**竣工日期*/
  77. @Excel(name = "竣工日期", width = 15, format = "yyyy-MM-dd")
  78. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
  79. @DateTimeFormat(pattern="yyyy-MM-dd")
  80. @ApiModelProperty(value = "竣工日期")
  81. private java.util.Date jgrq;
  82. /**建设情况*/
  83. @Excel(name = "建设情况", width = 15, dicCode = "gcjsqk")
  84. @ApiModelProperty(value = "建设情况")
  85. private java.lang.String jsqk;
  86. /**监管单位*/
  87. @Excel(name = "监管单位", width = 15, dicCode = "gcjsqk")
  88. @ApiModelProperty(value = "监管单位")
  89. private java.lang.String jgdw;
  90. /**监管负责人*/
  91. @Excel(name = "监管负责人", width = 15, dicCode = "gcjsqk")
  92. @ApiModelProperty(value = "监管负责人")
  93. private java.lang.String jgfzr;
  94. /**施工现场是否符合要求*/
  95. @Excel(name = "施工现场是否符合要求", width = 15, dicCode = "yn")
  96. @Dict(dicCode = "yn")
  97. @ApiModelProperty(value = "施工现场是否符合要求")
  98. private java.lang.String sgxcsffhyq;
  99. /**外键*/
  100. @ApiModelProperty(value = "外键")
  101. private java.lang.String mainId;
  102. /**存在问题及处理情况*/
  103. @Excel(name = "存在问题及处理情况", width = 15)
  104. @ApiModelProperty(value = "存在问题及处理情况")
  105. private java.lang.String czwtjclqk;
  106. /**geoinfo*/
  107. @Excel(name = "geoinfo", width = 15)
  108. @ApiModelProperty(value = "geoinfo")
  109. private java.lang.String geoinfo;
  110. }