天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

58 lines
1.3 KiB

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;
}
/// <summary>
/// 流程主键
/// </summary>
[Description("流程主键")]
public string PID { get; set; }
/// <summary>
/// 流程级别
/// </summary>
[Description("流程级别")]
public string FlowLevel { get; set; }
/// <summary>
/// 机构ID
/// </summary>
[Description("机构ID")]
public string SDept { get; set; }
/// <summary>
/// 用户ID
/// </summary>
[Description("用户ID")]
public string SUser { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
[Description("用户姓名")]
public string SUserName { get; set; }
/// <summary>
/// 组织结构
/// </summary>
[Description("组织机构")]
public string SOrgaDesc { get; set; }
}
}