using Edu.Model.Entity.Flow; using System; using System.Collections.Generic; using System.Text; namespace Edu.Model.ViewModel.Flow { /// <summary> /// 流程节点视图实体类 /// </summary> public class RB_Flow_Node_ViewModel: RB_Flow_Node { /// <summary> /// 节点审核人信息列表 /// </summary> public List<RB_Flow_AduitInfo_ViewModel> FlowAduitList { get; set; } /// <summary> /// 流程编号【逗哥逗号分隔】 /// </summary> public string QFlowIds { get; set; } } }