D_MDO0063.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.mdo;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. import java.util.*;
  8. /**
  9. * MatchFuc参数查询
  10. */
  11. public class D_MDO0063 extends BaseMapModel implements Serializable {
  12. private static final long serialVersionUID = -1463838678425832212L;
  13. String pid;//项目ID
  14. /**
  15. *项目ID
  16. */
  17. public void setPid(String pid) {
  18. this.pid=pid;
  19. }
  20. /**
  21. *项目ID
  22. */
  23. public String getPid() {
  24. return this.pid;
  25. }
  26. String mfcid;//MatchFuc参数ID
  27. /**
  28. *MatchFuc参数ID
  29. */
  30. public void setMfcid(String mfcid) {
  31. this.mfcid=mfcid;
  32. }
  33. /**
  34. *MatchFuc参数ID
  35. */
  36. public String getMfcid() {
  37. return this.mfcid;
  38. }
  39. String equation;//python脚本
  40. /**
  41. *python脚本
  42. */
  43. public void setEquation(String equation) {
  44. this.equation=equation;
  45. }
  46. /**
  47. *python脚本
  48. */
  49. public String getEquation() {
  50. return this.equation;
  51. }
  52. String wid;//流程id
  53. /**
  54. *流程id
  55. */
  56. public void setWid(String wid) {
  57. this.wid=wid;
  58. }
  59. /**
  60. *流程id
  61. */
  62. public String getWid() {
  63. return this.wid;
  64. }
  65. List <D_MDO0063_INPARAMS_RECODE> inParams;//自变量
  66. /**
  67. *自变量
  68. */
  69. public void setInParams(List <D_MDO0063_INPARAMS_RECODE> inParams) {
  70. this.inParams=inParams;
  71. }
  72. /**
  73. *自变量
  74. */
  75. public List <D_MDO0063_INPARAMS_RECODE> getInParams() {
  76. return this.inParams;
  77. }
  78. List <D_MDO0063_OUTPARAMS_RECODE> outParams;//因变量
  79. /**
  80. *因变量
  81. */
  82. public void setOutParams(List <D_MDO0063_OUTPARAMS_RECODE> outParams) {
  83. this.outParams=outParams;
  84. }
  85. /**
  86. *因变量
  87. */
  88. public List <D_MDO0063_OUTPARAMS_RECODE> getOutParams() {
  89. return this.outParams;
  90. }
  91. }