/*************************************************************************** * * 功能: 实体类 * 作者: LaiHaMa * 日期: 2010-9-14 * * 修改日期: * 修改人: * 修改内容: * * *************************************************************************/ namespace SiaSun.LMS.Model { using System; /// /// IO_CONTROL_OLD /// [Serializable] public class IO_CONTROL_OLD { public IO_CONTROL_OLD() { } private System.Decimal _fid; private System.Decimal _frelativeid; private System.Decimal _fmanageid; private string _fstockbarcode; private string _ftasklevel; private System.Decimal _fstartcellid; private System.Decimal _fendcellid; private string _fbegintime; private string _fendtime; private string _fstatus; private string _fremark; /// /// 控制编号 /// public System.Decimal FID { get{return _fid;} set{_fid = value;} } /// /// 关联编号 /// public System.Decimal FRELATIVEID { get{return _frelativeid;} set{_frelativeid = value;} } /// /// 任务编号 /// public System.Decimal FMANAGEID { get{return _fmanageid;} set{_fmanageid = value;} } /// /// 托盘条码 /// public string FSTOCKBARCODE { get{return _fstockbarcode;} set{_fstockbarcode = value;} } /// /// 任务级别 /// public string FTASKLEVEL { get{return _ftasklevel;} set{_ftasklevel = value;} } /// /// 起始货位 /// public System.Decimal FSTARTCELLID { get{return _fstartcellid;} set{_fstartcellid = value;} } /// /// 终止货位 /// public System.Decimal FENDCELLID { get{return _fendcellid;} set{_fendcellid = value;} } /// /// 开始时间 /// public string FBEGINTIME { get{return _fbegintime;} set{_fbegintime = value;} } /// /// 结束时间 /// public string FENDTIME { get{return _fendtime;} set{_fendtime = value;} } /// /// 状态 /// public string FSTATUS { get{return _fstatus;} set{_fstatus = value;} } /// /// 备注 /// public string FREMARK { get{return _fremark;} set{_fremark = value;} } } }