AdiSolverConfigImg.java 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. package com.miniframe.model.system;
  2. import com.miniframe.system.MiniserviceBaseModel;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. import javax.persistence.*;
  6. @Table(name = "adi_solver_config_img")
  7. public class AdiSolverConfigImg extends MiniserviceBaseModel implements Serializable {
  8. /**
  9. * 求解器配ID
  10. */
  11. @Id
  12. private String id;
  13. /**
  14. * 用户编码
  15. */
  16. private String uid;
  17. /**
  18. * 项目ID
  19. */
  20. private String pid;
  21. /**
  22. * 求解配置Id
  23. */
  24. @Column(name = "solver_config_id")
  25. private String solverConfigId;
  26. private String img;
  27. /**
  28. * 步数
  29. */
  30. private String step;
  31. /**
  32. * 创建时间
  33. */
  34. @Column(name = "create_time")
  35. private Date createTime;
  36. /**
  37. * 前处理 pre后处理 post
  38. */
  39. private String type;
  40. private String action;
  41. private String animationtype;
  42. /**
  43. * 物面0 流场1
  44. */
  45. @Column(name = "isVolume")
  46. private String isvolume;
  47. private static final long serialVersionUID = 1L;
  48. /**
  49. * 获取求解器配ID
  50. *
  51. * @return id - 求解器配ID
  52. */
  53. public String getId() {
  54. return id;
  55. }
  56. /**
  57. * 设置求解器配ID
  58. *
  59. * @param id 求解器配ID
  60. */
  61. public void setId(String id) {
  62. this.id = id == null ? null : id.trim();
  63. }
  64. /**
  65. * 获取用户编码
  66. *
  67. * @return uid - 用户编码
  68. */
  69. public String getUid() {
  70. return uid;
  71. }
  72. /**
  73. * 设置用户编码
  74. *
  75. * @param uid 用户编码
  76. */
  77. public void setUid(String uid) {
  78. this.uid = uid == null ? null : uid.trim();
  79. }
  80. /**
  81. * 获取项目ID
  82. *
  83. * @return pid - 项目ID
  84. */
  85. public String getPid() {
  86. return pid;
  87. }
  88. /**
  89. * 设置项目ID
  90. *
  91. * @param pid 项目ID
  92. */
  93. public void setPid(String pid) {
  94. this.pid = pid == null ? null : pid.trim();
  95. }
  96. /**
  97. * 获取求解配置Id
  98. *
  99. * @return solver_config_id - 求解配置Id
  100. */
  101. public String getSolverConfigId() {
  102. return solverConfigId;
  103. }
  104. /**
  105. * 设置求解配置Id
  106. *
  107. * @param solverConfigId 求解配置Id
  108. */
  109. public void setSolverConfigId(String solverConfigId) {
  110. this.solverConfigId = solverConfigId == null ? null : solverConfigId.trim();
  111. }
  112. /**
  113. * @return img
  114. */
  115. public String getImg() {
  116. return img;
  117. }
  118. /**
  119. * @param img
  120. */
  121. public void setImg(String img) {
  122. this.img = img == null ? null : img.trim();
  123. }
  124. /**
  125. * 获取步数
  126. *
  127. * @return step - 步数
  128. */
  129. public String getStep() {
  130. return step;
  131. }
  132. /**
  133. * 设置步数
  134. *
  135. * @param step 步数
  136. */
  137. public void setStep(String step) {
  138. this.step = step == null ? null : step.trim();
  139. }
  140. /**
  141. * 获取创建时间
  142. *
  143. * @return create_time - 创建时间
  144. */
  145. public Date getCreateTime() {
  146. return createTime;
  147. }
  148. /**
  149. * 设置创建时间
  150. *
  151. * @param createTime 创建时间
  152. */
  153. public void setCreateTime(Date createTime) {
  154. this.createTime = createTime;
  155. }
  156. /**
  157. * 获取前处理 pre后处理 post
  158. *
  159. * @return type - 前处理 pre后处理 post
  160. */
  161. public String getType() {
  162. return type;
  163. }
  164. /**
  165. * 设置前处理 pre后处理 post
  166. *
  167. * @param type 前处理 pre后处理 post
  168. */
  169. public void setType(String type) {
  170. this.type = type == null ? null : type.trim();
  171. }
  172. /**
  173. * @return action
  174. */
  175. public String getAction() {
  176. return action;
  177. }
  178. /**
  179. * @param action
  180. */
  181. public void setAction(String action) {
  182. this.action = action == null ? null : action.trim();
  183. }
  184. /**
  185. * @return animationtype
  186. */
  187. public String getAnimationtype() {
  188. return animationtype;
  189. }
  190. /**
  191. * @param animationtype
  192. */
  193. public void setAnimationtype(String animationtype) {
  194. this.animationtype = animationtype == null ? null : animationtype.trim();
  195. }
  196. /**
  197. * 获取物面0 流场1
  198. *
  199. * @return isVolume - 物面0 流场1
  200. */
  201. public String getIsvolume() {
  202. return isvolume;
  203. }
  204. /**
  205. * 设置物面0 流场1
  206. *
  207. * @param isvolume 物面0 流场1
  208. */
  209. public void setIsvolume(String isvolume) {
  210. this.isvolume = isvolume == null ? null : isvolume.trim();
  211. }
  212. }