AdiSolverConfigImg.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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. private static final long serialVersionUID = 1L;
  43. /**
  44. * 获取求解器配ID
  45. *
  46. * @return id - 求解器配ID
  47. */
  48. public String getId() {
  49. return id;
  50. }
  51. /**
  52. * 设置求解器配ID
  53. *
  54. * @param id 求解器配ID
  55. */
  56. public void setId(String id) {
  57. this.id = id == null ? null : id.trim();
  58. }
  59. /**
  60. * 获取用户编码
  61. *
  62. * @return uid - 用户编码
  63. */
  64. public String getUid() {
  65. return uid;
  66. }
  67. /**
  68. * 设置用户编码
  69. *
  70. * @param uid 用户编码
  71. */
  72. public void setUid(String uid) {
  73. this.uid = uid == null ? null : uid.trim();
  74. }
  75. /**
  76. * 获取项目ID
  77. *
  78. * @return pid - 项目ID
  79. */
  80. public String getPid() {
  81. return pid;
  82. }
  83. /**
  84. * 设置项目ID
  85. *
  86. * @param pid 项目ID
  87. */
  88. public void setPid(String pid) {
  89. this.pid = pid == null ? null : pid.trim();
  90. }
  91. /**
  92. * 获取求解配置Id
  93. *
  94. * @return solver_config_id - 求解配置Id
  95. */
  96. public String getSolverConfigId() {
  97. return solverConfigId;
  98. }
  99. /**
  100. * 设置求解配置Id
  101. *
  102. * @param solverConfigId 求解配置Id
  103. */
  104. public void setSolverConfigId(String solverConfigId) {
  105. this.solverConfigId = solverConfigId == null ? null : solverConfigId.trim();
  106. }
  107. /**
  108. * @return img
  109. */
  110. public String getImg() {
  111. return img;
  112. }
  113. /**
  114. * @param img
  115. */
  116. public void setImg(String img) {
  117. this.img = img == null ? null : img.trim();
  118. }
  119. /**
  120. * 获取步数
  121. *
  122. * @return step - 步数
  123. */
  124. public String getStep() {
  125. return step;
  126. }
  127. /**
  128. * 设置步数
  129. *
  130. * @param step 步数
  131. */
  132. public void setStep(String step) {
  133. this.step = step == null ? null : step.trim();
  134. }
  135. /**
  136. * 获取创建时间
  137. *
  138. * @return create_time - 创建时间
  139. */
  140. public Date getCreateTime() {
  141. return createTime;
  142. }
  143. /**
  144. * 设置创建时间
  145. *
  146. * @param createTime 创建时间
  147. */
  148. public void setCreateTime(Date createTime) {
  149. this.createTime = createTime;
  150. }
  151. /**
  152. * 获取前处理 pre后处理 post
  153. *
  154. * @return type - 前处理 pre后处理 post
  155. */
  156. public String getType() {
  157. return type;
  158. }
  159. /**
  160. * 设置前处理 pre后处理 post
  161. *
  162. * @param type 前处理 pre后处理 post
  163. */
  164. public void setType(String type) {
  165. this.type = type == null ? null : type.trim();
  166. }
  167. /**
  168. * @return action
  169. */
  170. public String getAction() {
  171. return action;
  172. }
  173. /**
  174. * @param action
  175. */
  176. public void setAction(String action) {
  177. this.action = action == null ? null : action.trim();
  178. }
  179. /**
  180. * @return animationtype
  181. */
  182. public String getAnimationtype() {
  183. return animationtype;
  184. }
  185. /**
  186. * @param animationtype
  187. */
  188. public void setAnimationtype(String animationtype) {
  189. this.animationtype = animationtype == null ? null : animationtype.trim();
  190. }
  191. }