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.
59 lines
1.3 KiB
59 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
|
|
{
|
|
/// <summary>
|
|
/// 支持交互处理记录
|
|
/// </summary>
|
|
public class FlowSetModel : QDGModel
|
|
{
|
|
public FlowSetModel()
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 结点
|
|
/// </summary>
|
|
[Description("结点")]
|
|
public string FlowLevel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 1级结点
|
|
/// </summary>
|
|
[Description("1级结点")]
|
|
public string FlowLevel1 { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 2级结点
|
|
/// </summary>
|
|
[Description("2级结点")]
|
|
public string FlowLevel2 { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 3级结点
|
|
/// </summary>
|
|
[Description("3级结点")]
|
|
public string FlowLevel3 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 机构列表
|
|
/// </summary>
|
|
[Description("机构列表")]
|
|
public List<OrgaizationModel> orgaizationList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 已选择机构列表
|
|
/// </summary>
|
|
[Description("已选择机构列表")]
|
|
public List<ZPFlowModel> zpFlowList { get; set; }
|
|
}
|
|
}
|