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.
37 lines
752 B
37 lines
752 B
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;
|
|
|
|
///<sumary>
|
|
/// ¼Æ»®±àºÅ
|
|
///</sumary>
|
|
[DataMember]
|
|
public int PLAN_ID
|
|
{
|
|
get { return _PLAN_ID; }
|
|
set { this._PLAN_ID = value; }
|
|
}
|
|
|
|
///<sumary>
|
|
/// ÏÂÒ»½áµã
|
|
///</sumary>
|
|
[DataMember]
|
|
public string ACTION_EVENT
|
|
{
|
|
get { return _ACTION_EVENT; }
|
|
set { this._ACTION_EVENT = value; }
|
|
}
|
|
}
|
|
}
|