MdoProSurro.java 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. package com.miniframe.model.mdo;
  2. import com.miniframe.system.MiniserviceBaseModel;
  3. import java.io.Serializable;
  4. import javax.persistence.*;
  5. @Table(name = "mdo_pro_surro")
  6. public class MdoProSurro extends MiniserviceBaseModel implements Serializable {
  7. /**
  8. * 代理优化器ID
  9. */
  10. @Id
  11. private String id;
  12. /**
  13. * 项目ID
  14. */
  15. private String pid;
  16. private String nsurro;
  17. @Column(name = "n_kriging")
  18. private String nKriging;
  19. /**
  20. * 屏幕输出等级
  21. */
  22. private String iout;
  23. /**
  24. * 续算开关 0-否,1-是
  25. */
  26. private String irestart;
  27. /**
  28. * 试验设计方法
  29. */
  30. private String ndoe;
  31. /**
  32. * 初始样本点数
  33. */
  34. private String ns;
  35. /**
  36. * 最大样本点数
  37. */
  38. private String nsmax;
  39. /**
  40. * 低可信度初始样本点数(nsurro=4 and n_kriging=12时)
  41. */
  42. @Column(name = "ns_lf")
  43. private String nsLf;
  44. /**
  45. * 低可信度最大样本点数(nsurro=4 and n_kriging=12时
  46. */
  47. @Column(name = "nsmax_lf")
  48. private String nsmaxLf;
  49. /**
  50. * 各可信度初始样本点数(nsurro=4 and n_kriging>12时)
  51. */
  52. @Column(name = "ns_mk")
  53. private String nsMk;
  54. /**
  55. * 各可信度最大样本点数(nsurro=4 and n_kriging>12
  56. */
  57. @Column(name = "nsmax_mk")
  58. private String nsmaxMk;
  59. /**
  60. * 最优解收敛性容差
  61. */
  62. @Column(name = "x_tol")
  63. private String xTol;
  64. /**
  65. * 真实函数的约束容差
  66. */
  67. @Column(name = "feasibility_tol_real")
  68. private String feasibilityTolReal;
  69. /**
  70. * 代理模型的约束容差
  71. */
  72. @Column(name = "feasibility_tol_surro")
  73. private String feasibilityTolSurro;
  74. /**
  75. * 优化算法
  76. */
  77. private String algorithm;
  78. /**
  79. * 是否选中 1 -选中 0-未选中
  80. */
  81. private Short checked;
  82. private static final long serialVersionUID = 1L;
  83. /**
  84. * 获取代理优化器ID
  85. *
  86. * @return id - 代理优化器ID
  87. */
  88. public String getId() {
  89. return id;
  90. }
  91. /**
  92. * 设置代理优化器ID
  93. *
  94. * @param id 代理优化器ID
  95. */
  96. public void setId(String id) {
  97. this.id = id == null ? null : id.trim();
  98. }
  99. /**
  100. * 获取项目ID
  101. *
  102. * @return pid - 项目ID
  103. */
  104. public String getPid() {
  105. return pid;
  106. }
  107. /**
  108. * 设置项目ID
  109. *
  110. * @param pid 项目ID
  111. */
  112. public void setPid(String pid) {
  113. this.pid = pid == null ? null : pid.trim();
  114. }
  115. /**
  116. * @return nsurro
  117. */
  118. public String getNsurro() {
  119. return nsurro;
  120. }
  121. /**
  122. * @param nsurro
  123. */
  124. public void setNsurro(String nsurro) {
  125. this.nsurro = nsurro == null ? null : nsurro.trim();
  126. }
  127. /**
  128. * @return n_kriging
  129. */
  130. public String getnKriging() {
  131. return nKriging;
  132. }
  133. /**
  134. * @param nKriging
  135. */
  136. public void setnKriging(String nKriging) {
  137. this.nKriging = nKriging == null ? null : nKriging.trim();
  138. }
  139. /**
  140. * 获取屏幕输出等级
  141. *
  142. * @return iout - 屏幕输出等级
  143. */
  144. public String getIout() {
  145. return iout;
  146. }
  147. /**
  148. * 设置屏幕输出等级
  149. *
  150. * @param iout 屏幕输出等级
  151. */
  152. public void setIout(String iout) {
  153. this.iout = iout == null ? null : iout.trim();
  154. }
  155. /**
  156. * 获取续算开关 0-否,1-是
  157. *
  158. * @return irestart - 续算开关 0-否,1-是
  159. */
  160. public String getIrestart() {
  161. return irestart;
  162. }
  163. /**
  164. * 设置续算开关 0-否,1-是
  165. *
  166. * @param irestart 续算开关 0-否,1-是
  167. */
  168. public void setIrestart(String irestart) {
  169. this.irestart = irestart == null ? null : irestart.trim();
  170. }
  171. /**
  172. * 获取试验设计方法
  173. *
  174. * @return ndoe - 试验设计方法
  175. */
  176. public String getNdoe() {
  177. return ndoe;
  178. }
  179. /**
  180. * 设置试验设计方法
  181. *
  182. * @param ndoe 试验设计方法
  183. */
  184. public void setNdoe(String ndoe) {
  185. this.ndoe = ndoe == null ? null : ndoe.trim();
  186. }
  187. /**
  188. * 获取初始样本点数
  189. *
  190. * @return ns - 初始样本点数
  191. */
  192. public String getNs() {
  193. return ns;
  194. }
  195. /**
  196. * 设置初始样本点数
  197. *
  198. * @param ns 初始样本点数
  199. */
  200. public void setNs(String ns) {
  201. this.ns = ns == null ? null : ns.trim();
  202. }
  203. /**
  204. * 获取最大样本点数
  205. *
  206. * @return nsmax - 最大样本点数
  207. */
  208. public String getNsmax() {
  209. return nsmax;
  210. }
  211. /**
  212. * 设置最大样本点数
  213. *
  214. * @param nsmax 最大样本点数
  215. */
  216. public void setNsmax(String nsmax) {
  217. this.nsmax = nsmax == null ? null : nsmax.trim();
  218. }
  219. /**
  220. * 获取低可信度初始样本点数(nsurro=4 and n_kriging=12时)
  221. *
  222. * @return ns_lf - 低可信度初始样本点数(nsurro=4 and n_kriging=12时)
  223. */
  224. public String getNsLf() {
  225. return nsLf;
  226. }
  227. /**
  228. * 设置低可信度初始样本点数(nsurro=4 and n_kriging=12时)
  229. *
  230. * @param nsLf 低可信度初始样本点数(nsurro=4 and n_kriging=12时)
  231. */
  232. public void setNsLf(String nsLf) {
  233. this.nsLf = nsLf == null ? null : nsLf.trim();
  234. }
  235. /**
  236. * 获取低可信度最大样本点数(nsurro=4 and n_kriging=12时
  237. *
  238. * @return nsmax_lf - 低可信度最大样本点数(nsurro=4 and n_kriging=12时
  239. */
  240. public String getNsmaxLf() {
  241. return nsmaxLf;
  242. }
  243. /**
  244. * 设置低可信度最大样本点数(nsurro=4 and n_kriging=12时
  245. *
  246. * @param nsmaxLf 低可信度最大样本点数(nsurro=4 and n_kriging=12时
  247. */
  248. public void setNsmaxLf(String nsmaxLf) {
  249. this.nsmaxLf = nsmaxLf == null ? null : nsmaxLf.trim();
  250. }
  251. /**
  252. * 获取各可信度初始样本点数(nsurro=4 and n_kriging>12时)
  253. *
  254. * @return ns_mk - 各可信度初始样本点数(nsurro=4 and n_kriging>12时)
  255. */
  256. public String getNsMk() {
  257. return nsMk;
  258. }
  259. /**
  260. * 设置各可信度初始样本点数(nsurro=4 and n_kriging>12时)
  261. *
  262. * @param nsMk 各可信度初始样本点数(nsurro=4 and n_kriging>12时)
  263. */
  264. public void setNsMk(String nsMk) {
  265. this.nsMk = nsMk == null ? null : nsMk.trim();
  266. }
  267. /**
  268. * 获取各可信度最大样本点数(nsurro=4 and n_kriging>12
  269. *
  270. * @return nsmax_mk - 各可信度最大样本点数(nsurro=4 and n_kriging>12
  271. */
  272. public String getNsmaxMk() {
  273. return nsmaxMk;
  274. }
  275. /**
  276. * 设置各可信度最大样本点数(nsurro=4 and n_kriging>12
  277. *
  278. * @param nsmaxMk 各可信度最大样本点数(nsurro=4 and n_kriging>12
  279. */
  280. public void setNsmaxMk(String nsmaxMk) {
  281. this.nsmaxMk = nsmaxMk == null ? null : nsmaxMk.trim();
  282. }
  283. /**
  284. * 获取最优解收敛性容差
  285. *
  286. * @return x_tol - 最优解收敛性容差
  287. */
  288. public String getxTol() {
  289. return xTol;
  290. }
  291. /**
  292. * 设置最优解收敛性容差
  293. *
  294. * @param xTol 最优解收敛性容差
  295. */
  296. public void setxTol(String xTol) {
  297. this.xTol = xTol == null ? null : xTol.trim();
  298. }
  299. /**
  300. * 获取真实函数的约束容差
  301. *
  302. * @return feasibility_tol_real - 真实函数的约束容差
  303. */
  304. public String getFeasibilityTolReal() {
  305. return feasibilityTolReal;
  306. }
  307. /**
  308. * 设置真实函数的约束容差
  309. *
  310. * @param feasibilityTolReal 真实函数的约束容差
  311. */
  312. public void setFeasibilityTolReal(String feasibilityTolReal) {
  313. this.feasibilityTolReal = feasibilityTolReal == null ? null : feasibilityTolReal.trim();
  314. }
  315. /**
  316. * 获取代理模型的约束容差
  317. *
  318. * @return feasibility_tol_surro - 代理模型的约束容差
  319. */
  320. public String getFeasibilityTolSurro() {
  321. return feasibilityTolSurro;
  322. }
  323. /**
  324. * 设置代理模型的约束容差
  325. *
  326. * @param feasibilityTolSurro 代理模型的约束容差
  327. */
  328. public void setFeasibilityTolSurro(String feasibilityTolSurro) {
  329. this.feasibilityTolSurro = feasibilityTolSurro == null ? null : feasibilityTolSurro.trim();
  330. }
  331. /**
  332. * 获取优化算法
  333. *
  334. * @return algorithm - 优化算法
  335. */
  336. public String getAlgorithm() {
  337. return algorithm;
  338. }
  339. /**
  340. * 设置优化算法
  341. *
  342. * @param algorithm 优化算法
  343. */
  344. public void setAlgorithm(String algorithm) {
  345. this.algorithm = algorithm == null ? null : algorithm.trim();
  346. }
  347. /**
  348. * 获取是否选中 1 -选中 0-未选中
  349. *
  350. * @return checked - 是否选中 1 -选中 0-未选中
  351. */
  352. public Short getChecked() {
  353. return checked;
  354. }
  355. /**
  356. * 设置是否选中 1 -选中 0-未选中
  357. *
  358. * @param checked 是否选中 1 -选中 0-未选中
  359. */
  360. public void setChecked(Short checked) {
  361. this.checked = checked;
  362. }
  363. }