A_MDO0058.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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_MDO0058 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String wid;//流程ID
  13. /**
  14. *流程ID
  15. */
  16. public void setWid(String wid) {
  17. this.wid=wid;
  18. }
  19. /**
  20. *流程ID
  21. */
  22. public String getWid() {
  23. return this.wid;
  24. }
  25. String uid;//UID
  26. /**
  27. *UID
  28. */
  29. public void setUid(String uid) {
  30. this.uid=uid;
  31. }
  32. /**
  33. *UID
  34. */
  35. public String getUid() {
  36. return this.uid;
  37. }
  38. String pid;//pid
  39. /**
  40. *pid
  41. */
  42. public void setPid(String pid) {
  43. this.pid=pid;
  44. }
  45. /**
  46. *pid
  47. */
  48. public String getPid() {
  49. return this.pid;
  50. }
  51. String type;//process-逻辑线 data-数据线 com-组件
  52. /**
  53. *process-逻辑线 data-数据线 com-组件
  54. */
  55. public void setType(String type) {
  56. this.type=type;
  57. }
  58. /**
  59. *process-逻辑线 data-数据线 com-组件
  60. */
  61. public String getType() {
  62. return this.type;
  63. }
  64. String fromuid;//线段来源UID
  65. /**
  66. *线段来源UID
  67. */
  68. public void setFromuid(String fromuid) {
  69. this.fromuid=fromuid;
  70. }
  71. /**
  72. *线段来源UID
  73. */
  74. public String getFromuid() {
  75. return this.fromuid;
  76. }
  77. String touid;//线段目标UID
  78. /**
  79. *线段目标UID
  80. */
  81. public void setTouid(String touid) {
  82. this.touid=touid;
  83. }
  84. /**
  85. *线段目标UID
  86. */
  87. public String getTouid() {
  88. return this.touid;
  89. }
  90. }