69c2630e67039a33ada536c40317de5abe49ac5e.svn-base 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package org.jeecg.modules.demo.hzz.xxgl.hdmx.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.TableName;
  8. import org.jeecgframework.poi.excel.annotation.Excel;
  9. import lombok.Data;
  10. import com.fasterxml.jackson.annotation.JsonFormat;
  11. import org.springframework.format.annotation.DateTimeFormat;
  12. import org.jeecg.common.aspect.annotation.Dict;
  13. import io.swagger.annotations.ApiModel;
  14. import io.swagger.annotations.ApiModelProperty;
  15. /**
  16. * @Description: 河道明细表
  17. * @Author: jeecg-boot
  18. * @Date: 2022-04-06
  19. * @Version: V1.0
  20. */
  21. @Data
  22. @TableName("rm_hdmxb")
  23. @ApiModel(value="rm_hdmxb对象", description="河道明细表")
  24. public class RmHdmxb 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 hlbm;
  53. /**河流名称*/
  54. @Excel(name = "河流名称", width = 15)
  55. @ApiModelProperty(value = "河流名称")
  56. private java.lang.String hlmc;
  57. /**河流类别*/
  58. @Excel(name = "河流类别", width = 15, dicCode = "hllb")
  59. @Dict(dicCode = "hllb")
  60. @ApiModelProperty(value = "河流类别")
  61. private java.lang.String hllb;
  62. /**流域面积(km²)*/
  63. @Excel(name = "流域面积(km²)", width = 15)
  64. @ApiModelProperty(value = "流域面积(km²)")
  65. private java.lang.Double lymj;
  66. /**境内河流长度(km)*/
  67. @Excel(name = "境内河流长度(km)", width = 15)
  68. @ApiModelProperty(value = "境内河流长度(km)")
  69. private java.lang.Double jnhlcd;
  70. /**流经县(市、区)*/
  71. @Excel(name = "流经县(市、区)", width = 15)
  72. @ApiModelProperty(value = "流经县(市、区)")
  73. private java.lang.String ljxsq;
  74. /**有防洪保护对象(目标)或规划设计中有防洪任务*/
  75. @Excel(name = "有防洪保护对象(目标)或规划设计中有防洪任务", width = 15)
  76. @Dict(dicCode = "whether")
  77. @ApiModelProperty(value = "有防洪保护对象(目标)或规划设计中有防洪任务")
  78. private java.lang.String yfhbhdx;
  79. /**有排涝受益的村庄和农田*/
  80. @Excel(name = "有排涝受益的村庄和农田", width = 15)
  81. @Dict(dicCode = "whether")
  82. @ApiModelProperty(value = "有排涝受益的村庄和农田")
  83. private java.lang.String yplsydczhnt;
  84. /**是否有堤防*/
  85. @Excel(name = "是否有堤防", width = 15)
  86. @Dict(dicCode = "whether")
  87. @ApiModelProperty(value = "是否有堤防")
  88. private java.lang.String sfydf;
  89. /**备注*/
  90. @Excel(name = "备注", width = 15)
  91. @ApiModelProperty(value = "备注")
  92. private java.lang.String bz;
  93. }