using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace com.hnshituo.pur.vo { [Serializable] public class BaseBpmVo { private string bpmTaskId; public string BpmTaskId { get { return bpmTaskId; } set { bpmTaskId = value; } } private string operatorUserId; public string OperatorUserId { get { return operatorUserId; } set { operatorUserId = value; } } private string[] validDataPurviewIds; public string[] ValidDataPurviewIds { get { return validDataPurviewIds; } set { validDataPurviewIds = value; } } /** 登录者 */ private string bpmUserId; public string BpmUserId { get { return bpmUserId; } set { bpmUserId = value; } } private string bpmProcDefKey; public string BpmProcDefKey { get { return bpmProcDefKey; } set { bpmProcDefKey = value; } } } }