using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace MES.Service.Modes
{
///
/// 销售发货通知单明细表
///
[SugarTable("MES_ERPQTCK_DETAIL")]
public class QTCKDetail
{
///
///
///
[SugarColumn(ColumnName="ID", OracleSequenceName = "SEQ_TBL", IsPrimaryKey = true)]
public decimal? Id { get; set; }
///
///
///
[SugarColumn(ColumnName = "PID")]
public decimal? PID { get; set; }
///
/// ERPID
///
[SugarColumn(ColumnName = "ERPID")]
public decimal? ERPID { get; set; }
///
/// ERHPID
///
[SugarColumn(ColumnName = "ERP_HID")]
public decimal? ERP_HID { get; set; }
///
/// 物料编码
///
[SugarColumn(ColumnName = "FMaterialId")]
public string MaterialId { get; set; }
///
/// 物料名称
///
[SugarColumn(ColumnName = "FMaterialName")]
public string MaterialName { get; set; }
///
/// 规格型号
///
[SugarColumn(ColumnName = "FModel")]
public string Model { get; set; }
///
/// 单位
///
[SugarColumn(ColumnName = "FUnitID")]
public string UnitID { get; set; }
///
/// 申请数量
///
[SugarColumn(ColumnName = "FQty")]
public decimal? Qty { get; set; }
///
/// 基本单位
///
[SugarColumn(ColumnName = "FBaseUnitId")]
public string BaseUnitId { get; set; }
///
/// 仓库
///
[SugarColumn(ColumnName = "FStockId")]
public string StockId { get; set; }
///
/// 仓位
///
[SugarColumn(ColumnName = "FStockLocId")]
public string StockLocId { get; set; }
///
/// 批号
///
[SugarColumn(ColumnName = "FLot")]
public string Lot { get; set; }
///
/// 货主类型
///
[SugarColumn(ColumnName = "FOwnerTypeId")]
public string OwnerTypeId { get; set; }
///
/// 货主
///
[SugarColumn(ColumnName = "FOwnerId")]
public string OwnerId { get; set; }
///
/// 计划跟踪号
///
[SugarColumn(ColumnName = "FMtoNo")]
public string MtoNo { get; set; }
///
/// 库存状态
///
[SugarColumn(ColumnName = "FStockStatusId")]
public string StockStatusId { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "FEntryNote")]
public string EntryNote { get; set; }
///
/// 业务关闭
///
[SugarColumn(ColumnName = "FBUSINESSCLOSED")]
public string BusinessClosed { get; set; }
}
}