A_MDO0070.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.mdo;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * FSI参数添加修改
  9. */
  10. public class A_MDO0070 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String pid;//项目ID
  13. /**
  14. *项目ID
  15. */
  16. public void setPid(String pid) {
  17. this.pid=pid;
  18. }
  19. /**
  20. *项目ID
  21. */
  22. public String getPid() {
  23. return this.pid;
  24. }
  25. String wid;//流程id
  26. /**
  27. *流程id
  28. */
  29. public void setWid(String wid) {
  30. this.wid=wid;
  31. }
  32. /**
  33. *流程id
  34. */
  35. public String getWid() {
  36. return this.wid;
  37. }
  38. int stepmax;//最大耦合迭代步
  39. /**
  40. *最大耦合迭代步
  41. */
  42. public void setStepmax(int stepmax) {
  43. this.stepmax=stepmax;
  44. }
  45. /**
  46. *最大耦合迭代步
  47. */
  48. public int getStepmax() {
  49. return this.stepmax;
  50. }
  51. int outputsteps;//输出每轮迭代结果
  52. /**
  53. *输出每轮迭代结果
  54. */
  55. public void setOutputsteps(int outputsteps) {
  56. this.outputsteps=outputsteps;
  57. }
  58. /**
  59. *输出每轮迭代结果
  60. */
  61. public int getOutputsteps() {
  62. return this.outputsteps;
  63. }
  64. String method;//数据插值方法
  65. /**
  66. *数据插值方法
  67. */
  68. public void setMethod(String method) {
  69. this.method=method;
  70. }
  71. /**
  72. *数据插值方法
  73. */
  74. public String getMethod() {
  75. return this.method;
  76. }
  77. String aerogroup;//气动耦合区域
  78. /**
  79. *气动耦合区域
  80. */
  81. public void setAerogroup(String aerogroup) {
  82. this.aerogroup=aerogroup;
  83. }
  84. /**
  85. *气动耦合区域
  86. */
  87. public String getAerogroup() {
  88. return this.aerogroup;
  89. }
  90. int skin;//结构耦合区域skin 1 启用 0 不启用
  91. /**
  92. *结构耦合区域skin 1 启用 0 不启用
  93. */
  94. public void setSkin(int skin) {
  95. this.skin=skin;
  96. }
  97. /**
  98. *结构耦合区域skin 1 启用 0 不启用
  99. */
  100. public int getSkin() {
  101. return this.skin;
  102. }
  103. int spar;//结构耦合区域spar 1 启用 0 不启用
  104. /**
  105. *结构耦合区域spar 1 启用 0 不启用
  106. */
  107. public void setSpar(int spar) {
  108. this.spar=spar;
  109. }
  110. /**
  111. *结构耦合区域spar 1 启用 0 不启用
  112. */
  113. public int getSpar() {
  114. return this.spar;
  115. }
  116. }