A_MDO0074.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.mdo;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 流出修改设置求解组件到求解组件
  9. */
  10. public class A_MDO0074 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String fcomid;//来源组件ID
  13. /**
  14. *来源组件ID
  15. */
  16. public void setFcomid(String fcomid) {
  17. this.fcomid=fcomid;
  18. }
  19. /**
  20. *来源组件ID
  21. */
  22. public String getFcomid() {
  23. return this.fcomid;
  24. }
  25. String fcomtype;//来源组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
  26. /**
  27. *来源组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
  28. */
  29. public void setFcomtype(String fcomtype) {
  30. this.fcomtype=fcomtype;
  31. }
  32. /**
  33. *来源组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
  34. */
  35. public String getFcomtype() {
  36. return this.fcomtype;
  37. }
  38. String paramstr;//参数ID-流类型1启用0关闭之间逗号分割 多条数据分号分隔
  39. /**
  40. *参数ID-流类型1启用0关闭之间逗号分割 多条数据分号分隔
  41. */
  42. public void setParamstr(String paramstr) {
  43. this.paramstr=paramstr;
  44. }
  45. /**
  46. *参数ID-流类型1启用0关闭之间逗号分割 多条数据分号分隔
  47. */
  48. public String getParamstr() {
  49. return this.paramstr;
  50. }
  51. String tcomid;//目标组件ID
  52. /**
  53. *目标组件ID
  54. */
  55. public void setTcomid(String tcomid) {
  56. this.tcomid=tcomid;
  57. }
  58. /**
  59. *目标组件ID
  60. */
  61. public String getTcomid() {
  62. return this.tcomid;
  63. }
  64. String tcomtype;//目标组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
  65. /**
  66. *目标组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
  67. */
  68. public void setTcomtype(String tcomtype) {
  69. this.tcomtype=tcomtype;
  70. }
  71. /**
  72. *目标组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
  73. */
  74. public String getTcomtype() {
  75. return this.tcomtype;
  76. }
  77. }