using System.ComponentModel.DataAnnotations; namespace RB_MES_API.Models.Cloud { /// /// 生产用料清单导入前准备的表头数据,非模型 /// public class PPBOMHeadStr { /// /// 产品编码 (必填项) /// public string FMaterialID { get; set; } = string.Empty; /// /// 生产车间 (必填项) /// public string FWorkshopID { 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 int 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 FPrdOrgId { get; set; } = string.Empty; /// /// 产品货主类型 (必填项) /// public string FParentOwnerTypeId { get; set; } = string.Empty; /// /// 产品货主 (必填项) /// public string FParentOwnerId { get; set; } = string.Empty; } }