D_MDO0036.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.mdo;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * python查询
  9. */
  10. public class D_MDO0036 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 pythonid;//PythonID
  26. /**
  27. *PythonID
  28. */
  29. public void setPythonid(String pythonid) {
  30. this.pythonid=pythonid;
  31. }
  32. /**
  33. *PythonID
  34. */
  35. public String getPythonid() {
  36. return this.pythonid;
  37. }
  38. String ptython;//代码
  39. /**
  40. *代码
  41. */
  42. public void setPtython(String ptython) {
  43. this.ptython=ptython;
  44. }
  45. /**
  46. *代码
  47. */
  48. public String getPtython() {
  49. return this.ptython;
  50. }
  51. String wid;//流程id
  52. /**
  53. *流程id
  54. */
  55. public void setWid(String wid) {
  56. this.wid=wid;
  57. }
  58. /**
  59. *流程id
  60. */
  61. public String getWid() {
  62. return this.wid;
  63. }
  64. }