A_MDO0037.java 824 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 A_MDO0037 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 python;//代码
  26. /**
  27. *代码
  28. */
  29. public void setPython(String python) {
  30. this.python=python;
  31. }
  32. /**
  33. *代码
  34. */
  35. public String getPython() {
  36. return this.python;
  37. }
  38. String wid;//流程id
  39. /**
  40. *流程id
  41. */
  42. public void setWid(String wid) {
  43. this.wid=wid;
  44. }
  45. /**
  46. *流程id
  47. */
  48. public String getWid() {
  49. return this.wid;
  50. }
  51. }