using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc.Html; using QMFrameWork.WebUI.Attribute; using QMFrameWork.WebUI; namespace QMAPP.Web.Models.Sys { /// /// 支持交互处理记录 /// public class FlowSetModel : QDGModel { public FlowSetModel() { } /// /// 结点 /// [Description("结点")] public string FlowLevel { get; set; } /// /// 1级结点 /// [Description("1级结点")] public string FlowLevel1 { get; set; } /// /// 2级结点 /// [Description("2级结点")] public string FlowLevel2 { get; set; } /// /// 3级结点 /// [Description("3级结点")] public string FlowLevel3 { get; set; } /// /// 机构列表 /// [Description("机构列表")] public List orgaizationList { get; set; } /// /// 已选择机构列表 /// [Description("已选择机构列表")] public List zpFlowList { get; set; } } }