A_MDO0074.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 comid;//组件ID
  13. /**
  14. *组件ID
  15. */
  16. public void setComid(String comid) {
  17. this.comid=comid;
  18. }
  19. /**
  20. *组件ID
  21. */
  22. public String getComid() {
  23. return this.comid;
  24. }
  25. String comtype;//组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
  26. /**
  27. *组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
  28. */
  29. public void setComtype(String comtype) {
  30. this.comtype=comtype;
  31. }
  32. /**
  33. *组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
  34. */
  35. public String getComtype() {
  36. return this.comtype;
  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. }