using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using WMS.Attirubte; namespace WMS.Model.SC { /// /// 任务表 /// [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; /// /// 任务号 /// [DisplayName("任务号")] public string TASK_ID { set{ _task_id=value;} get{return _task_id;} } /// /// 任务名 /// [DisplayName("任务名")] public string TASK_NAME { set{ _task_name=value;} get{return _task_name;} } /// /// 计划号 /// [DisplayName("计划号")] public string PLAN_ID { set{ _plan_id=value;} get{return _plan_id;} } /// /// 任务日期 /// [DisplayName("任务日期")] public DateTime TASK_DATE { set{ _task_date=value;} get{return _task_date;} } /// /// 任务总数量 /// [DisplayName("任务总数量")] public decimal TASK_NUM { set{ _task_num=value;} get{return _task_num;} } /// /// 加工组编号 /// [DisplayName("加工组编号")] public string TEAM_ID { set{ _team_id=value;} get{return _team_id;} } /// /// 描述 /// [DisplayName("描述")] public string TASK_DESCRIPTION { set{ _task_description=value;} get{return _task_description;} } /// /// 实际完成总数量 /// [DisplayName("实际完成总数量")] public decimal COMPLETE_NUM { set{ _complete_num=value;} get{return _complete_num;} } #endregion Model } }