using System; using System.ComponentModel; using WMS.Attirubte; namespace WMS.Model.SC { /// /// 采购通知单明细:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] [TableClmAttribute(TableName = "CUX_WMS_PO_LINES_ITF")] public class Mod_CUX_WMS_PO_LINES_ITF { #region Model private int _po_header_id; private int _po_line_id; private int _line_location_id; private int _line_num; private int _item_id; private string _segment1; private string _item_description; private string _pur_uom_code; private string _inv_uom_code; private int _conversion_rate; private string _item_type; private int _shipment_num; private int _po_distribution_id; private int _distribution_num; private string _consigened_flag; private int _quantity; private int _quantity_received; private int _quantity_cancelled; private int _po_release_id; private string _closed_flag; private string _cancel_flag; private string _closed_code; private string _note_to_receiver; private DateTime _last_update_date; private int _last_updated_by; private DateTime _creation_date; private int _created_by; private int _status; private string _attribute3; /// /// /// [DisplayName("订单头主键")] public int PO_HEADER_ID { set { _po_header_id = value; } get { return _po_header_id; } } /// /// /// [DisplayName("订单行主键")] public int PO_LINE_ID { set { _po_line_id = value; } get { return _po_line_id; } } /// /// /// [DisplayName("发运行主键")] public int LINE_LOCATION_ID { set { _line_location_id = value; } get { return _line_location_id; } } private string _SHIP_TO_ORGANIZATION_CODE ; [DisplayName("收货组织代码")] public string SHIP_TO_ORGANIZATION_CODE { set { _SHIP_TO_ORGANIZATION_CODE = value; } get { return _SHIP_TO_ORGANIZATION_CODE; } } private int _SHIP_TO_ORGANIZATION_ID; [DisplayName("收货组织ID")] public int SHIP_TO_ORGANIZATION_ID { set { _SHIP_TO_ORGANIZATION_ID = value; } get { return _SHIP_TO_ORGANIZATION_ID; } } /// /// /// [DisplayName("订单行号")] public int LINE_NUM { set { _line_num = value; } get { return _line_num; } } /// /// /// [DisplayName("物料ID")] public int ITEM_ID { set { _item_id = value; } get { return _item_id; } } /// /// /// [DisplayName("物料编码")] public string SEGMENT1 { set { _segment1 = value; } get { return _segment1; } } /// /// /// [DisplayName("物料描述")] public string ITEM_DESCRIPTION { set { _item_description = value; } get { return _item_description; } } /// /// /// [DisplayName("采购单位")] public string PUR_UOM_CODE { set { _pur_uom_code = value; } get { return _pur_uom_code; } } /// /// /// [DisplayName("库存单位")] public string INV_UOM_CODE { set { _inv_uom_code = value; } get { return _inv_uom_code; } } /// /// /// [DisplayName("单位转换率")] public int CONVERSION_RATE { set { _conversion_rate = value; } get { return _conversion_rate; } } /// /// /// [DisplayName("型号")] public string ITEM_TYPE { set { _item_type = value; } get { return _item_type; } } /// /// /// [DisplayName("发运行号")] public int SHIPMENT_NUM { set { _shipment_num = value; } get { return _shipment_num; } } /// /// /// [DisplayName("分配ID")] public int PO_DISTRIBUTION_ID { set { _po_distribution_id = value; } get { return _po_distribution_id; } } /// /// /// [DisplayName("分配行号")] public int DISTRIBUTION_NUM { set { _distribution_num = value; } get { return _distribution_num; } } /// /// /// [DisplayName("寄售标记")] public string CONSIGENED_FLAG { set { _consigened_flag = value; } get { return _consigened_flag; } } /// /// /// [DisplayName("数量")] public int QUANTITY { set { _quantity = value; } get { return _quantity; } } /// /// /// [DisplayName("已接收数量")] public int QUANTITY_RECEIVED { set { _quantity_received = value; } get { return _quantity_received; } } /// /// /// [DisplayName("取消数量")] public int QUANTITY_CANCELLED { set { _quantity_cancelled = value; } get { return _quantity_cancelled; } } /// /// /// [DisplayName("")] public int PO_RELEASE_ID { set { _po_release_id = value; } get { return _po_release_id; } } /// /// /// [DisplayName("发运行关闭标志")] public string CLOSED_FLAG { set { _closed_flag = value; } get { return _closed_flag; } } /// /// /// [DisplayName("发运行取消标志")] public string CANCEL_FLAG { set { _cancel_flag = value; } get { return _cancel_flag; } } /// /// /// [DisplayName("发运行状态")] public string CLOSED_CODE { set { _closed_code = value; } get { return _closed_code; } } /// /// /// [DisplayName("发运行接收人")] public string NOTE_TO_RECEIVER { set { _note_to_receiver = value; } get { return _note_to_receiver; } } /// /// /// [DisplayName("最后更新日期")] public DateTime LAST_UPDATE_DATE { set { _last_update_date = value; } get { return _last_update_date; } } /// /// /// [DisplayName("最后更新人")] public int LAST_UPDATED_BY { set { _last_updated_by = value; } get { return _last_updated_by; } } /// /// /// [DisplayName("创建日期")] public DateTime CREATION_DATE { set { _creation_date = value; } get { return _creation_date; } } /// /// /// [DisplayName("创建人")] public int CREATED_BY { set { _created_by = value; } get { return _created_by; } } /// /// /// [DisplayName("状态")] public int STATUS { set { _status = value; } get { return _status; } } /// /// /// [DisplayName("")] public string ATTRIBUTE3 { set { _attribute3 = value; } get { return _attribute3; } } #endregion Model } }