java后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TResourceVo.java 3.1 KiB

5 天之前
5 天之前
5 天之前
2 天之前
5 天之前
5 天之前
5 天之前
5 天之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. package com.ruoyi.resource.domain;
  2. import com.ruoyi.common.annotation.Excel;
  3. import lombok.Data;
  4. import java.math.BigDecimal;
  5. /**
  6. * 地块属性对象 t_resource_land
  7. *
  8. * @author rongxin
  9. * @date 2025-09-05
  10. */
  11. @Data
  12. public class TResourceVo {
  13. private static final long serialVersionUID = 1L;
  14. /** fid */
  15. private Long fid;
  16. /** 区域位置名称 */
  17. @Excel(name = "区域位置名称")
  18. private String deptName;
  19. /** 标识码 */
  20. @Excel(name = "标识码 */")
  21. private Integer bsm;
  22. /** 要素代码 */
  23. @Excel(name = "要素代码")
  24. private String ysdm;
  25. /** 地块代码 */
  26. @Excel(name = "地块代码")
  27. private String dkbm;
  28. /** 地块名称 */
  29. @Excel(name = "地块名称")
  30. private String dkmc;
  31. /** 所有权性质 */
  32. @Excel(name = "所有权性质", dictType = "ownership_type")
  33. private String syqxz;
  34. /** 地块类别 */
  35. @Excel(name = "地块类别", dictType = "land_type")
  36. private String dklb;
  37. /** 土地利用类型 */
  38. @Excel(name = "土地利用类型", dictType = "land_use")
  39. private String tdlylx;
  40. /** 地力等级 */
  41. @Excel(name = "地力等级", dictType = "land_grade_type")
  42. private String dldj;
  43. /** 土地用途 */
  44. @Excel(name = "土地用途", dictType = "land_use_type")
  45. private String tdyt;
  46. /** 是否基本农田 */
  47. @Excel(name = "是否基本农田", dictType = "is_common")
  48. private String sfjbnt;
  49. /** 地块东至 */
  50. @Excel(name = "地块东至")
  51. private String dkdz;
  52. /** 地块西至 */
  53. @Excel(name = "地块西至")
  54. private String dkxz;
  55. /** 地块南至 */
  56. @Excel(name = "地块南至")
  57. private String dknz;
  58. /** 地块北至 */
  59. @Excel(name = "地块北至")
  60. private String dkbz;
  61. /** 备注信息 */
  62. @Excel(name = "备注信息")
  63. private String dkbzxx;
  64. /** 指界人姓名 */
  65. @Excel(name = "指界人姓名")
  66. private String zjrxm;
  67. /** 实测面积( ㎡) */
  68. @Excel(name = "实测面积( ㎡)")
  69. private BigDecimal scmj;
  70. /** 实测面积(亩) */
  71. @Excel(name = "实测面积(亩)")
  72. private BigDecimal scmjm;
  73. /** 是否帐外地 字典 is_common */
  74. @Excel(name = "是否帐外地", dictType = "is_common")
  75. private String sfzwd;
  76. // ------------------------------
  77. /** id */
  78. private Long id;
  79. /** 经营面积(亩) */
  80. @Excel(name = "经营面积(亩)")
  81. private BigDecimal jymj;
  82. /** 经营方式 */
  83. @Excel(name = "经营方式")
  84. private String jyfs;
  85. /** 经营对象名称 */
  86. @Excel(name = "经营对象名称")
  87. private String jydxmc;
  88. /** 经营开始时间 */
  89. @Excel(name = "经营开始时间")
  90. private String jykssj;
  91. /** 经营结束时间 */
  92. @Excel(name = "经营结束时间")
  93. private String jyjssj;
  94. /** 承包金额(元) */
  95. @Excel(name = "承包金额(元)")
  96. private BigDecimal cbje;
  97. /** 备注 */
  98. @Excel(name = "备注")
  99. private String bzxx;
  100. /** 实物图 */
  101. private String dkImg;
  102. /** 调查状态 */
  103. @Excel(name = "调查状态", dictType = "survey_status")
  104. private String surveyStatus;
  105. }