namespace RB_MES_API.Models.Cloud
{
public class SUBPPBOMHeadStr
{
///
/// 产品编码 (必填项)
///
public string FMaterialID { get; set; } = string.Empty;
///
/// 供应商 (必填项)
///
public string FSupplierId { get; set; } = string.Empty;
///
/// BOM版本 (必填项)
///
public string FBOMID { get; set; } = string.Empty;
///
/// 数量 (必填项)
///
public decimal FQty { get; set; }
///
/// 委外订单编号 (必填项)
///
public string FMOBillNO { get; set; } = string.Empty;
///
/// 委外订单行号 (必填项)
///
public long FMOEntrySeq { get; set; }
///
/// 委外订单分录内码 (必填项)
///
public long FMOEntryID { get; set; }
///
/// 基本单位数量 (必填项)
///
public decimal FBaseQty { get; set; }
///
/// 委外订单内码 (必填项)
///
public long FMoId { get; set; }
///
/// 基本单位 (必填项)
///
public string FBaseUnitID { get; set; } = string.Empty;
///
/// 委外订单类型 (必填项)
///
public string FMOType { get; set; } = string.Empty;
///
/// 单位 (必填项)
///
public string FUnitID { get; set; } = string.Empty;
///
/// 委外组织 (必填项)
///
public string FSubOrgId { get; set; } = string.Empty;
///
/// 委外货主类型 (必填项)
///
public string FParentOwnerTypeId { get; set; } = string.Empty;
///
/// 委外货主 (必填项)
///
public string FParentOwnerId { get; set; } = string.Empty;
}
}