BaseBpmVo.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace com.hnshituo.pur.vo
  6. {
  7. [Serializable]
  8. public class BaseBpmVo
  9. {
  10. private string bpmTaskId;
  11. public string BpmTaskId
  12. {
  13. get { return bpmTaskId; }
  14. set { bpmTaskId = value; }
  15. }
  16. private string operatorUserId;
  17. public string OperatorUserId
  18. {
  19. get { return operatorUserId; }
  20. set { operatorUserId = value; }
  21. }
  22. private string[] validDataPurviewIds;
  23. public string[] ValidDataPurviewIds
  24. {
  25. get { return validDataPurviewIds; }
  26. set { validDataPurviewIds = value; }
  27. }
  28. /** 登录者 */
  29. private string bpmUserId;
  30. public string BpmUserId
  31. {
  32. get { return bpmUserId; }
  33. set { bpmUserId = value; }
  34. }
  35. private string bpmProcDefKey;
  36. public string BpmProcDefKey
  37. {
  38. get { return bpmProcDefKey; }
  39. set { bpmProcDefKey = value; }
  40. }
  41. }
  42. }