AdiModeling.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. package com.miniframe.model.system;
  2. import com.miniframe.system.MiniserviceBaseModel;
  3. import java.io.Serializable;
  4. import javax.persistence.*;
  5. @Table(name = "adi_modeling")
  6. public class AdiModeling extends MiniserviceBaseModel implements Serializable {
  7. /**
  8. * 项目建模信息
  9. */
  10. @Id
  11. private String id;
  12. /**
  13. * 用户编码
  14. */
  15. private String uid;
  16. /**
  17. * 项目ID
  18. */
  19. private String pid;
  20. /**
  21. * 几何源文件
  22. */
  23. @Column(name = "geometry_source_file")
  24. private String geometrySourceFile;
  25. /**
  26. * 几何文件hsh
  27. */
  28. @Column(name = "geometry_file")
  29. private String geometryFile;
  30. /**
  31. * 网格源文件
  32. */
  33. @Column(name = "grids_source_file")
  34. private String gridsSourceFile;
  35. /**
  36. * 网格文件
  37. */
  38. @Column(name = "grids_file")
  39. private String gridsFile;
  40. private static final long serialVersionUID = 1L;
  41. /**
  42. * 获取项目建模信息
  43. *
  44. * @return id - 项目建模信息
  45. */
  46. public String getId() {
  47. return id;
  48. }
  49. /**
  50. * 设置项目建模信息
  51. *
  52. * @param id 项目建模信息
  53. */
  54. public void setId(String id) {
  55. this.id = id == null ? null : id.trim();
  56. }
  57. /**
  58. * 获取用户编码
  59. *
  60. * @return uid - 用户编码
  61. */
  62. public String getUid() {
  63. return uid;
  64. }
  65. /**
  66. * 设置用户编码
  67. *
  68. * @param uid 用户编码
  69. */
  70. public void setUid(String uid) {
  71. this.uid = uid == null ? null : uid.trim();
  72. }
  73. /**
  74. * 获取项目ID
  75. *
  76. * @return pid - 项目ID
  77. */
  78. public String getPid() {
  79. return pid;
  80. }
  81. /**
  82. * 设置项目ID
  83. *
  84. * @param pid 项目ID
  85. */
  86. public void setPid(String pid) {
  87. this.pid = pid == null ? null : pid.trim();
  88. }
  89. /**
  90. * 获取几何源文件
  91. *
  92. * @return geometry_source_file - 几何源文件
  93. */
  94. public String getGeometrySourceFile() {
  95. return geometrySourceFile;
  96. }
  97. /**
  98. * 设置几何源文件
  99. *
  100. * @param geometrySourceFile 几何源文件
  101. */
  102. public void setGeometrySourceFile(String geometrySourceFile) {
  103. this.geometrySourceFile = geometrySourceFile == null ? null : geometrySourceFile.trim();
  104. }
  105. /**
  106. * 获取几何文件hsh
  107. *
  108. * @return geometry_file - 几何文件hsh
  109. */
  110. public String getGeometryFile() {
  111. return geometryFile;
  112. }
  113. /**
  114. * 设置几何文件hsh
  115. *
  116. * @param geometryFile 几何文件hsh
  117. */
  118. public void setGeometryFile(String geometryFile) {
  119. this.geometryFile = geometryFile == null ? null : geometryFile.trim();
  120. }
  121. /**
  122. * 获取网格源文件
  123. *
  124. * @return grids_source_file - 网格源文件
  125. */
  126. public String getGridsSourceFile() {
  127. return gridsSourceFile;
  128. }
  129. /**
  130. * 设置网格源文件
  131. *
  132. * @param gridsSourceFile 网格源文件
  133. */
  134. public void setGridsSourceFile(String gridsSourceFile) {
  135. this.gridsSourceFile = gridsSourceFile == null ? null : gridsSourceFile.trim();
  136. }
  137. /**
  138. * 获取网格文件
  139. *
  140. * @return grids_file - 网格文件
  141. */
  142. public String getGridsFile() {
  143. return gridsFile;
  144. }
  145. /**
  146. * 设置网格文件
  147. *
  148. * @param gridsFile 网格文件
  149. */
  150. public void setGridsFile(String gridsFile) {
  151. this.gridsFile = gridsFile == null ? null : gridsFile.trim();
  152. }
  153. }