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 ZPFlowModel : QDGModel { public ZPFlowModel() { //设置页尺寸 this.pageSize = MvcApplication.PageSize.ToString(); ShowProgress = true; } /// /// 流程主键 /// [Description("流程主键")] public string PID { get; set; } /// /// 流程级别 /// [Description("流程级别")] public string FlowLevel { get; set; } /// /// 机构ID /// [Description("机构ID")] public string SDept { get; set; } /// /// 用户ID /// [Description("用户ID")] public string SUser { get; set; } /// /// 用户姓名 /// [Description("用户姓名")] public string SUserName { get; set; } /// /// 组织结构 /// [Description("组织机构")] public string SOrgaDesc { get; set; } } }