Land.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. package com.sysu.admin.controller.aland;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. import com.sysu.admin.controller.crop.images.CropImage;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import lombok.experimental.Accessors;
  7. import lombok.experimental.FieldNameConstants;
  8. import org.hibernate.annotations.DynamicInsert;
  9. import org.hibernate.annotations.DynamicUpdate;
  10. import org.locationtech.jts.geom.Geometry;
  11. import org.locationtech.jts.geom.MultiPolygon;
  12. import org.locationtech.jts.geom.Point;
  13. import javax.persistence.*;
  14. import java.util.Date;
  15. import java.util.HashMap;
  16. @Data
  17. @Accessors(chain = true)
  18. @EqualsAndHashCode(callSuper = false)
  19. @FieldNameConstants(innerTypeName = "FIELDS")
  20. @Table(name = "leizhou_land")
  21. @Entity
  22. @DynamicInsert
  23. @DynamicUpdate
  24. public class Land {
  25. /*
  26. 字段信息:value——潜在产值(元)
  27. area_ha——地块面积(公顷)
  28. crop_type——作物类别
  29. cropTypeName -- 作物类别名称
  30. number --编号
  31. perimeter -- 周长
  32. elevation -- 高程
  33. parcelTypeName -- 地块类型名称
  34. parcelType -- 地块类型
  35. id_card——身份证
  36. name——姓名
  37. aspect——坡向
  38. slope——坡度
  39. gdp_pop——人均gdp
  40. hupo——离水源距离
  41. shengdao——离道路距离
  42. quxian——离城市中心距离
  43. Area——面积(平方米)
  44. TOC——土壤有机质
  45. ph -- 酸碱度
  46. c -- 碳
  47. _2n -- 氮
  48. p -- 磷
  49. k -- 钾
  50. el_sure -- 元素可信度
  51. crop_sure -- 作物可信度
  52. */
  53. public Land(){
  54. }
  55. public Land(Geometry geometry){
  56. this.geom = (MultiPolygon)geometry;
  57. }
  58. /**
  59. * 主键
  60. */
  61. @Id
  62. @GeneratedValue(strategy = GenerationType.IDENTITY)
  63. private Long id;
  64. @Column
  65. private Double area;
  66. /**
  67. * 编号
  68. */
  69. @Column
  70. private Long number;
  71. /**
  72. * 周长
  73. */
  74. @Column
  75. private Double perimeter;
  76. /**
  77. * 高程
  78. */
  79. @Column
  80. private Double elevation;
  81. @Column
  82. private Double simpgnflag;
  83. @Column
  84. private Double toc;
  85. @Column
  86. private Double quxian;
  87. @Column
  88. private Double shengdao;
  89. @Column
  90. private Double hupo;
  91. @Column
  92. private Double gdp_pop;
  93. @Column
  94. private Double slope;
  95. @Column
  96. private Double aspect;
  97. @Column
  98. private String name;
  99. @Column
  100. private String id_card;
  101. /**
  102. * "corn","rice","other"
  103. */
  104. @Column
  105. private String crop_type;
  106. @Transient
  107. private String cropTypeName;
  108. /**
  109. * 单产
  110. */
  111. @Column
  112. private Double danChan;
  113. /**
  114. * 总产 = 单产 x 面积
  115. */
  116. @Transient
  117. private Double zongChan;
  118. @Column
  119. private Double area_ha;
  120. @Column
  121. private Double value;
  122. @Column
  123. private Integer majority;
  124. @Column
  125. private Integer parcelType;
  126. @Transient
  127. private String parcelTypeName;
  128. @JSONField(serialize = false)
  129. @Column(columnDefinition = "geom")
  130. private MultiPolygon geom;
  131. @Transient
  132. private String wkt;
  133. @Transient
  134. private String geojson;
  135. /**
  136. * 酸碱度
  137. */
  138. @Column()
  139. private Double ph;
  140. /**
  141. *c -- 碳
  142. */
  143. @Column()
  144. private Double c;
  145. /**
  146. * _2n -- 氮
  147. */
  148. @Column()
  149. private Double _2n;
  150. /**
  151. *p -- 磷
  152. */
  153. @Column()
  154. private Double p;
  155. /**
  156. *k -- 钾
  157. */
  158. @Column()
  159. private Double k;
  160. /**
  161. * 元素可信度
  162. * 0到1之间的小数
  163. */
  164. @Column()
  165. private Double elSure;
  166. /**
  167. * 作物类型可信度
  168. * 0到1之间的小数
  169. */
  170. @Column()
  171. private Double cropSure;
  172. }