101 lines
2.1 KiB
C#
101 lines
2.1 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using WMS.Attirubte;
|
|||
|
|
|
|||
|
|
namespace WMS.Model.SC
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 任务表
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
[TableClmAttribute(TableName = "T_SC_TASK")]
|
|||
|
|
public class TaskModel
|
|||
|
|
{
|
|||
|
|
#region Model
|
|||
|
|
private string _task_id;
|
|||
|
|
private string _task_name;
|
|||
|
|
private string _plan_id;
|
|||
|
|
private DateTime _task_date;
|
|||
|
|
private decimal _task_num;
|
|||
|
|
private string _team_id;
|
|||
|
|
private string _task_description;
|
|||
|
|
private decimal _complete_num;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 任务号
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("任务号")]
|
|||
|
|
public string TASK_ID
|
|||
|
|
{
|
|||
|
|
set{ _task_id=value;}
|
|||
|
|
get{return _task_id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 任务名
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("任务名")]
|
|||
|
|
public string TASK_NAME
|
|||
|
|
{
|
|||
|
|
set{ _task_name=value;}
|
|||
|
|
get{return _task_name;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 计划号
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("计划号")]
|
|||
|
|
public string PLAN_ID
|
|||
|
|
{
|
|||
|
|
set{ _plan_id=value;}
|
|||
|
|
get{return _plan_id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 任务日期
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("任务日期")]
|
|||
|
|
public DateTime TASK_DATE
|
|||
|
|
{
|
|||
|
|
set{ _task_date=value;}
|
|||
|
|
get{return _task_date;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 任务总数量
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("任务总数量")]
|
|||
|
|
public decimal TASK_NUM
|
|||
|
|
{
|
|||
|
|
set{ _task_num=value;}
|
|||
|
|
get{return _task_num;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 加工组编号
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("加工组编号")]
|
|||
|
|
public string TEAM_ID
|
|||
|
|
{
|
|||
|
|
set{ _team_id=value;}
|
|||
|
|
get{return _team_id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 描述
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("描述")]
|
|||
|
|
public string TASK_DESCRIPTION
|
|||
|
|
{
|
|||
|
|
set{ _task_description=value;}
|
|||
|
|
get{return _task_description;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 实际完成总数量
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("实际完成总数量")]
|
|||
|
|
public decimal COMPLETE_NUM
|
|||
|
|
{
|
|||
|
|
set{ _complete_num=value;}
|
|||
|
|
get{return _complete_num;}
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
}
|
|||
|
|
}
|