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.
44 lines
929 B
44 lines
929 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SiaSun.LMS.Model
|
|
{
|
|
public class Msg_Control_Task_Change
|
|
{
|
|
private int _manage_id;
|
|
|
|
///<sumary>任务编号
|
|
/// 任务编号
|
|
///</sumary>
|
|
public int MANAGE_ID
|
|
{
|
|
get { return _manage_id; }
|
|
set { _manage_id = value; }
|
|
}
|
|
|
|
|
|
private string _per_control_status;
|
|
|
|
///<sumary>任务前状态
|
|
/// 任务前状态
|
|
///</sumary>
|
|
public string PRE_CONTROL_STATUS
|
|
{
|
|
get { return _per_control_status; }
|
|
set { _per_control_status = value; }
|
|
}
|
|
|
|
private string _control_status;
|
|
|
|
///<sumary>任务状态
|
|
/// 任务状态
|
|
///</sumary>
|
|
public string CONTROL_STATUS
|
|
{
|
|
get { return _control_status; }
|
|
set { _control_status = value; }
|
|
}
|
|
}
|
|
}
|