java后端
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TResourceVo.java 4.0 KiB

3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
3 달 전
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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 String importCode;
  22. /** 标识码 */
  23. @Excel(name = "标识码")
  24. private Integer bsm;
  25. /** 要素代码 */
  26. @Excel(name = "要素代码")
  27. private String ysdm;
  28. /** 地块代码 */
  29. @Excel(name = "地块代码")
  30. private String dkbm;
  31. /** 地块名称 */
  32. @Excel(name = "地块名称")
  33. private String dkmc;
  34. /** 所有权性质 */
  35. @Excel(name = "所有权性质", dictType = "ownership_type")
  36. private String syqxz;
  37. /** 地块类别 */
  38. @Excel(name = "地块类别", dictType = "land_type")
  39. private String dklb;
  40. /** 土地利用类型 */
  41. @Excel(name = "土地利用类型", dictType = "land_use")
  42. private String tdlylx;
  43. /** 地力等级 */
  44. @Excel(name = "地力等级", dictType = "land_grade_type")
  45. private String dldj;
  46. /** 土地用途 */
  47. @Excel(name = "土地用途", dictType = "land_use_type")
  48. private String tdyt;
  49. /** 是否基本农田 */
  50. @Excel(name = "是否基本农田", dictType = "is_common")
  51. private String sfjbnt;
  52. /** 地块东至 */
  53. @Excel(name = "地块东至")
  54. private String dkdz;
  55. /** 地块西至 */
  56. @Excel(name = "地块西至")
  57. private String dkxz;
  58. /** 地块南至 */
  59. @Excel(name = "地块南至")
  60. private String dknz;
  61. /** 地块北至 */
  62. @Excel(name = "地块北至")
  63. private String dkbz;
  64. /** 备注信息 */
  65. @Excel(name = "备注信息")
  66. private String dkbzxx;
  67. /** 指界人姓名 */
  68. @Excel(name = "指界人姓名")
  69. private String zjrxm;
  70. /** 实测面积( ㎡) */
  71. @Excel(name = "实测面积(㎡)")
  72. private BigDecimal scmj;
  73. /** 实测面积(亩) */
  74. @Excel(name = "实测面积(亩)")
  75. private BigDecimal scmjm;
  76. /** 是否帐外地 字典 is_common */
  77. @Excel(name = "是否帐外地", dictType = "is_common")
  78. private String sfzwd;
  79. // ------------------------------
  80. /** id */
  81. private Long id;
  82. /** 经营面积(亩) */
  83. @Excel(name = "经营面积(亩)")
  84. private BigDecimal jymj;
  85. /** 经营方式 */
  86. @Excel(name = "经营方式", dictType = "jyfs")
  87. private String jyfs;
  88. @Excel(name = "经营对象类型", dictType = "jydxlx")
  89. private String jydxlx;
  90. /** 经营对象名称 */
  91. @Excel(name = "经营对象名称")
  92. private String jydxmc;
  93. /** 经营对象证件类型 */
  94. @Excel(name = "经营对象证件类型", dictType = "zjlx")
  95. private String jydxzjlx;
  96. /** 经营对象证件号码 */
  97. @Excel(name = "经营对象证件号码")
  98. private String jydxzjhm;
  99. /** 是否签订合同 */
  100. @Excel(name = "是否签订合同", dictType = "is_common")
  101. private String sfqdht;
  102. /** 经营开始时间 */
  103. @Excel(name = "经营开始时间")
  104. private String jykssj;
  105. /** 经营结束时间 */
  106. @Excel(name = "经营结束时间")
  107. private String jyjssj;
  108. /** 承包金额(元) */
  109. @Excel(name = "承包金额(元)")
  110. private BigDecimal cbje;
  111. /** 兑现金额 */
  112. @Excel(name = "兑现金额(元)")
  113. private BigDecimal dxje;
  114. /** 尚欠金额 */
  115. @Excel(name = "尚欠金额(元)")
  116. private BigDecimal sqje;
  117. /** 年收益 */
  118. @Excel(name = "年收益")
  119. private BigDecimal nsy;
  120. /** 备注 */
  121. @Excel(name = "备注")
  122. private String bzxx;
  123. /** 实物图 */
  124. private String dkImg;
  125. /** 调查状态 */
  126. @Excel(name = "调查状态", dictType = "survey_status")
  127. private String surveyStatus;
  128. }