AdiModeling.java 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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. /**
  41. * 几何源文件类型
  42. */
  43. @Column(name = "geometry_source_filetype")
  44. private String geometrySourceFiletype;
  45. /**
  46. * 几何文件hsh类型
  47. */
  48. @Column(name = "geometry_filetype")
  49. private String geometryFiletype;
  50. /**
  51. * 网格源文件类型
  52. */
  53. @Column(name = "grids_source_filetype")
  54. private String gridsSourceFiletype;
  55. /**
  56. * 网格文件
  57. */
  58. @Column(name = "grids_filetype")
  59. private String gridsFiletype;
  60. private static final long serialVersionUID = 1L;
  61. /**
  62. * 获取项目建模信息
  63. *
  64. * @return id - 项目建模信息
  65. */
  66. public String getId() {
  67. return id;
  68. }
  69. /**
  70. * 设置项目建模信息
  71. *
  72. * @param id 项目建模信息
  73. */
  74. public void setId(String id) {
  75. this.id = id == null ? null : id.trim();
  76. }
  77. /**
  78. * 获取用户编码
  79. *
  80. * @return uid - 用户编码
  81. */
  82. public String getUid() {
  83. return uid;
  84. }
  85. /**
  86. * 设置用户编码
  87. *
  88. * @param uid 用户编码
  89. */
  90. public void setUid(String uid) {
  91. this.uid = uid == null ? null : uid.trim();
  92. }
  93. /**
  94. * 获取项目ID
  95. *
  96. * @return pid - 项目ID
  97. */
  98. public String getPid() {
  99. return pid;
  100. }
  101. /**
  102. * 设置项目ID
  103. *
  104. * @param pid 项目ID
  105. */
  106. public void setPid(String pid) {
  107. this.pid = pid == null ? null : pid.trim();
  108. }
  109. /**
  110. * 获取几何源文件
  111. *
  112. * @return geometry_source_file - 几何源文件
  113. */
  114. public String getGeometrySourceFile() {
  115. return geometrySourceFile;
  116. }
  117. /**
  118. * 设置几何源文件
  119. *
  120. * @param geometrySourceFile 几何源文件
  121. */
  122. public void setGeometrySourceFile(String geometrySourceFile) {
  123. this.geometrySourceFile = geometrySourceFile == null ? null : geometrySourceFile.trim();
  124. }
  125. /**
  126. * 获取几何文件hsh
  127. *
  128. * @return geometry_file - 几何文件hsh
  129. */
  130. public String getGeometryFile() {
  131. return geometryFile;
  132. }
  133. /**
  134. * 设置几何文件hsh
  135. *
  136. * @param geometryFile 几何文件hsh
  137. */
  138. public void setGeometryFile(String geometryFile) {
  139. this.geometryFile = geometryFile == null ? null : geometryFile.trim();
  140. }
  141. /**
  142. * 获取网格源文件
  143. *
  144. * @return grids_source_file - 网格源文件
  145. */
  146. public String getGridsSourceFile() {
  147. return gridsSourceFile;
  148. }
  149. /**
  150. * 设置网格源文件
  151. *
  152. * @param gridsSourceFile 网格源文件
  153. */
  154. public void setGridsSourceFile(String gridsSourceFile) {
  155. this.gridsSourceFile = gridsSourceFile == null ? null : gridsSourceFile.trim();
  156. }
  157. /**
  158. * 获取网格文件
  159. *
  160. * @return grids_file - 网格文件
  161. */
  162. public String getGridsFile() {
  163. return gridsFile;
  164. }
  165. /**
  166. * 设置网格文件
  167. *
  168. * @param gridsFile 网格文件
  169. */
  170. public void setGridsFile(String gridsFile) {
  171. this.gridsFile = gridsFile == null ? null : gridsFile.trim();
  172. }
  173. /**
  174. * 获取几何源文件类型
  175. *
  176. * @return geometry_source_filetype - 几何源文件类型
  177. */
  178. public String getGeometrySourceFiletype() {
  179. return geometrySourceFiletype;
  180. }
  181. /**
  182. * 设置几何源文件类型
  183. *
  184. * @param geometrySourceFiletype 几何源文件类型
  185. */
  186. public void setGeometrySourceFiletype(String geometrySourceFiletype) {
  187. this.geometrySourceFiletype = geometrySourceFiletype == null ? null : geometrySourceFiletype.trim();
  188. }
  189. /**
  190. * 获取几何文件hsh类型
  191. *
  192. * @return geometry_filetype - 几何文件hsh类型
  193. */
  194. public String getGeometryFiletype() {
  195. return geometryFiletype;
  196. }
  197. /**
  198. * 设置几何文件hsh类型
  199. *
  200. * @param geometryFiletype 几何文件hsh类型
  201. */
  202. public void setGeometryFiletype(String geometryFiletype) {
  203. this.geometryFiletype = geometryFiletype == null ? null : geometryFiletype.trim();
  204. }
  205. /**
  206. * 获取网格源文件类型
  207. *
  208. * @return grids_source_filetype - 网格源文件类型
  209. */
  210. public String getGridsSourceFiletype() {
  211. return gridsSourceFiletype;
  212. }
  213. /**
  214. * 设置网格源文件类型
  215. *
  216. * @param gridsSourceFiletype 网格源文件类型
  217. */
  218. public void setGridsSourceFiletype(String gridsSourceFiletype) {
  219. this.gridsSourceFiletype = gridsSourceFiletype == null ? null : gridsSourceFiletype.trim();
  220. }
  221. /**
  222. * 获取网格文件
  223. *
  224. * @return grids_filetype - 网格文件
  225. */
  226. public String getGridsFiletype() {
  227. return gridsFiletype;
  228. }
  229. /**
  230. * 设置网格文件
  231. *
  232. * @param gridsFiletype 网格文件
  233. */
  234. public void setGridsFiletype(String gridsFiletype) {
  235. this.gridsFiletype = gridsFiletype == null ? null : gridsFiletype.trim();
  236. }
  237. }