using System;
using System.Collections.Generic;
using System.Text;
namespace SiaSun.LMS.Model
{
using System;
using System.Runtime.Serialization;
[Serializable]
[DataContract]
public class PLAN_ACTION_EXCUTE
{
private int _PLAN_ID;
private string _ACTION_EVENT;
///
/// 计划编号
///
[DataMember]
public int PLAN_ID
{
get { return _PLAN_ID; }
set { this._PLAN_ID = value; }
}
///
/// 下一结点
///
[DataMember]
public string ACTION_EVENT
{
get { return _ACTION_EVENT; }
set { this._ACTION_EVENT = value; }
}
}
}