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.
38 lines
752 B
38 lines
752 B
1 month ago
|
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; }
|
||
|
}
|
||
|
}
|
||
|
}
|