dcf98b69c61981205cd5d6982583cf9077001b71.svn-base 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. package org.jeecg.modules.demo.hzz.sjcjrw.rmcjrk.entity;
  2. import java.io.Serializable;
  3. import java.io.UnsupportedEncodingException;
  4. import java.util.Date;
  5. import java.math.BigDecimal;
  6. import com.baomidou.mybatisplus.annotation.IdType;
  7. import com.baomidou.mybatisplus.annotation.TableId;
  8. import com.baomidou.mybatisplus.annotation.TableName;
  9. import lombok.Data;
  10. import com.fasterxml.jackson.annotation.JsonFormat;
  11. import org.springframework.format.annotation.DateTimeFormat;
  12. import org.jeecgframework.poi.excel.annotation.Excel;
  13. import org.jeecg.common.aspect.annotation.Dict;
  14. import io.swagger.annotations.ApiModel;
  15. import io.swagger.annotations.ApiModelProperty;
  16. import lombok.EqualsAndHashCode;
  17. import lombok.experimental.Accessors;
  18. /**
  19. * @Description: 采集入库
  20. * @Author: jeecg-boot
  21. * @Date: 2022-04-20
  22. * @Version: V1.0
  23. */
  24. @Data
  25. @TableName("rm_cjrk")
  26. @Accessors(chain = true)
  27. @EqualsAndHashCode(callSuper = false)
  28. @ApiModel(value="rm_cjrk对象", description="采集入库")
  29. public class RmCjrk implements Serializable {
  30. private static final long serialVersionUID = 1L;
  31. /**主键*/
  32. @TableId(type = IdType.ASSIGN_ID)
  33. @ApiModelProperty(value = "主键")
  34. private String id;
  35. /**创建人*/
  36. @ApiModelProperty(value = "创建人")
  37. private String createBy;
  38. /**创建日期*/
  39. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
  40. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  41. @ApiModelProperty(value = "创建日期")
  42. private Date createTime;
  43. /**更新人*/
  44. @ApiModelProperty(value = "更新人")
  45. private String updateBy;
  46. /**更新日期*/
  47. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
  48. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  49. @ApiModelProperty(value = "更新日期")
  50. private Date updateTime;
  51. /**所属部门*/
  52. @ApiModelProperty(value = "所属部门")
  53. private String sysOrgCode;
  54. /**事项名称*/
  55. @Excel(name = "事项名称", width = 15)
  56. @ApiModelProperty(value = "事项名称")
  57. private String sxmc;
  58. /**位置描述*/
  59. @Excel(name = "位置描述", width = 15)
  60. @ApiModelProperty(value = "位置描述")
  61. private String wzms;
  62. /**事项类型*/
  63. @Excel(name = "事项类型", width = 15, dicCode = "sxlx")
  64. @Dict(dicCode = "sxlx")
  65. @ApiModelProperty(value = "事项类型")
  66. private String sxlx;
  67. /**活动状态*/
  68. @Excel(name = "活动状态", width = 15, dicCode = "hdzt")
  69. @Dict(dicCode = "hdzt")
  70. @ApiModelProperty(value = "活动状态")
  71. private String hdzt;
  72. /**活动开展单位或个人*/
  73. @Excel(name = "活动开展单位或个人", width = 15)
  74. @ApiModelProperty(value = "活动开展单位或个人")
  75. private String hdzkdwhgr;
  76. /**活动类型*/
  77. @Excel(name = "活动类型", width = 15, dicCode = "hdlx")
  78. @Dict(dicCode = "hdlx")
  79. @ApiModelProperty(value = "活动类型")
  80. private String hdlx;
  81. /**建设状态*/
  82. @Excel(name = "建设状态", width = 15, dicCode = "gcjsqk")
  83. @Dict(dicCode = "gcjsqk")
  84. @ApiModelProperty(value = "建设状态")
  85. private String jszt;
  86. /**建设单位*/
  87. @Excel(name = "建设单位", width = 15)
  88. @ApiModelProperty(value = "建设单位")
  89. private String jsdw;
  90. /**涉及河段*/
  91. @Excel(name = "涉及河段", width = 15, dicCode = "sjhd")
  92. @Dict(dicCode = "sjhd")
  93. @ApiModelProperty(value = "涉及河段")
  94. private String sjhd;
  95. /**河道监管责任单位*/
  96. @Excel(name = "河道监管责任单位", width = 15)
  97. @ApiModelProperty(value = "河道监管责任单位")
  98. private String hdjgzrdw;
  99. /**涉河类型*/
  100. @Excel(name = "涉河类型", width = 15, dicCode = "shlx")
  101. @Dict(dicCode = "shlx")
  102. @ApiModelProperty(value = "涉河类型")
  103. private String shlx;
  104. /**审批情况*/
  105. @Excel(name = "审批情况", width = 15)
  106. @ApiModelProperty(value = "审批情况")
  107. private String spqk;
  108. /**坐标采集经度*/
  109. @Excel(name = "坐标采集经度", width = 15)
  110. @ApiModelProperty(value = "坐标采集经度")
  111. private String zbcjjd;
  112. /**坐标采集纬度*/
  113. @Excel(name = "坐标采集纬度", width = 15)
  114. @ApiModelProperty(value = "坐标采集纬度")
  115. private String zbcjwd;
  116. /**占用河道岸线数据采集*/
  117. @Excel(name = "占用河道岸线数据采集", width = 15)
  118. @ApiModelProperty(value = "占用河道岸线数据采集")
  119. private String geoinfo;
  120. /**长度m*/
  121. @Excel(name = "长度m", width = 15)
  122. @ApiModelProperty(value = "长度m")
  123. private String cd;
  124. /**面积m²*/
  125. @Excel(name = "面积m²", width = 15)
  126. @ApiModelProperty(value = "面积m²")
  127. private String mj;
  128. /**现场情况描述*/
  129. @Excel(name = "现场情况描述", width = 15)
  130. @ApiModelProperty(value = "现场情况描述")
  131. private String xcqkms;
  132. /**备注*/
  133. @Excel(name = "备注", width = 15)
  134. @ApiModelProperty(value = "备注")
  135. private String bz;
  136. /**图片上传*/
  137. @Excel(name = "图片上传", width = 15)
  138. @ApiModelProperty(value = "图片上传")
  139. private String tpsc;
  140. /**省市区*/
  141. @Excel(name = "县市区", width = 15)
  142. @ApiModelProperty(value = "县市区")
  143. private String xsq;
  144. /**省市区编码*/
  145. @Excel(name = "省市区编码", width = 15)
  146. @ApiModelProperty(value = "省市区编码")
  147. private String xsqbm;
  148. /**行政区划*/
  149. @Excel(name = "行政区划", width = 15)
  150. @ApiModelProperty(value = "行政区划")
  151. private String xzqh;
  152. /**tbr*/
  153. @Excel(name = "tbr", width = 15)
  154. @ApiModelProperty(value = "tbr")
  155. private String tbr;
  156. }