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.Text;
|
|
|
|
namespace SiaSun.LMS.Model
|
|
{
|
|
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
[Serializable]
|
|
[DataContract]
|
|
public class MANAGE_ACTION_EXCUTE
|
|
{
|
|
private int _MANAGE_ID;
|
|
private string _MANAGE_TYPE_CODE;
|
|
private string _NEXT_NODE;
|
|
private string _ACTION_EVENT;
|
|
|
|
///<sumary>
|
|
/// 任务编号
|
|
///</sumary>
|
|
[DataMember]
|
|
public int MANAGE_ID
|
|
{
|
|
get { return _MANAGE_ID; }
|
|
set { this._MANAGE_ID = value; }
|
|
}
|
|
|
|
///<sumary>
|
|
/// 任务类型
|
|
///</sumary>
|
|
[DataMember]
|
|
public string MANAGE_TYPE_CODE
|
|
{
|
|
get { return _MANAGE_TYPE_CODE; }
|
|
set { this._MANAGE_TYPE_CODE = value; }
|
|
}
|
|
|
|
///<sumary>
|
|
/// 下一结点
|
|
///</sumary>
|
|
[DataMember]
|
|
public string NEXT_NODE
|
|
{
|
|
get { return _NEXT_NODE; }
|
|
set { this._NEXT_NODE = value; }
|
|
}
|
|
|
|
///<sumary>
|
|
/// 事件
|
|
///</sumary>
|
|
[DataMember]
|
|
public string ACTION_EVENT
|
|
{
|
|
get { return _ACTION_EVENT; }
|
|
set { this._ACTION_EVENT = value; }
|
|
}
|
|
}
|
|
}
|