using Edu.Model.Entity.Flow; using System; using System.Collections.Generic; using System.Text; namespace Edu.Model.ViewModel.Flow { /// /// 流程节点审核信息视图实体类 /// public class RB_Flow_AduitInfo_ViewModel : RB_Flow_AduitInfo { /// /// 流程节点编号【查询使用】 /// public string QNodeIds { get; set; } /// /// 流程编号【查询使用】 /// public string QFlowIds { get; set; } /// /// 系统角色对应人员编号【逗号分割】 /// public string PostUserIds { get; set; } } }