/*************************************************************************** * * 功能: 计划列表实体类 * 作者: Siasun * 日期: 2013/4/11 * * 修改日期: * 修改人: * 修改内容: * * *************************************************************************/ namespace SiaSun.LMS.Model { using System; using System.Runtime.Serialization; /// /// PLAN_LIST /// [Serializable] [DataContract] public class PLAN_LIST { public PLAN_LIST() { } private int _plan_list_id; private int _plan_id; private string _plan_list_code; private System.Decimal _plan_list_quantity; private System.Decimal _plan_list_ordered_quantity; private System.Decimal _plan_list_finished_quantity; private int _goods_id; private string _goods_property1; private string _goods_property2; private string _goods_property3; private string _goods_property4; private string _goods_property5; private string _goods_property6; private string _goods_property7; private string _goods_property8; private string _plan_list_remark; /// /// 计划列表编号 /// [DataMember] public int PLAN_LIST_ID { get{return _plan_list_id;} set{_plan_list_id = value;} } /// /// 计划编号 /// [DataMember] public int PLAN_ID { get{return _plan_id;} set{_plan_id = value;} } /// /// 编码 /// [DataMember] public string PLAN_LIST_CODE { get{return _plan_list_code;} set{_plan_list_code = value;} } /// /// 数量 /// [DataMember] public System.Decimal PLAN_LIST_QUANTITY { get{return _plan_list_quantity;} set{_plan_list_quantity = value;} } /// /// 下达数量 /// [DataMember] public System.Decimal PLAN_LIST_ORDERED_QUANTITY { get{return _plan_list_ordered_quantity;} set{_plan_list_ordered_quantity = value;} } /// /// 完成数量 /// [DataMember] public System.Decimal PLAN_LIST_FINISHED_QUANTITY { get{return _plan_list_finished_quantity;} set{_plan_list_finished_quantity = value;} } /// /// 物料编号 /// [DataMember] public int GOODS_ID { get{return _goods_id;} set{_goods_id = value;} } /// /// /// [DataMember] public string GOODS_PROPERTY1 { get{return _goods_property1;} set{_goods_property1 = value;} } /// /// /// [DataMember] public string GOODS_PROPERTY2 { get{return _goods_property2;} set{_goods_property2 = value;} } /// /// /// [DataMember] public string GOODS_PROPERTY3 { get{return _goods_property3;} set{_goods_property3 = value;} } /// /// /// [DataMember] public string GOODS_PROPERTY4 { get{return _goods_property4;} set{_goods_property4 = value;} } /// /// /// [DataMember] public string GOODS_PROPERTY5 { get{return _goods_property5;} set{_goods_property5 = value;} } /// /// /// [DataMember] public string GOODS_PROPERTY6 { get{return _goods_property6;} set{_goods_property6 = value;} } /// /// /// [DataMember] public string GOODS_PROPERTY7 { get{return _goods_property7;} set{_goods_property7 = value;} } /// /// /// [DataMember] public string GOODS_PROPERTY8 { get{return _goods_property8;} set{_goods_property8 = value;} } /// /// 备注 /// [DataMember] public string PLAN_LIST_REMARK { get{return _plan_list_remark;} set{_plan_list_remark = value;} } } }