namespace RB_MES_API.Models.Cloud { /// /// 生主订单变更的源单信息,与委外订单共享类 /// public class PRDMOChanges { public string FWorkShopID { get; set; } public string FMaterialId { get; set; } public string FSrcBillNo { get; set; } public int FSrcBillId { get; set; } public int FSrcBillEntryId { get; set; } public int FSrcBillEntrySeq { get; set; } /// /// 单位编码 /// public string FUnitId { get; set; } /// /// 基本单位编码 /// public string FBaseUnitId { get; set; } public decimal FQty { get; set; } public decimal FBaseQty { get; set; } public string FPlanStartDate { get; set; } public string FPlanFinishDate { get; set; } public string FBomId { get; set; } public decimal FConvertNumerator { get; set; } public decimal FConvertDenominator { get; set; } /// /// 业务状态 /// public string FStatus { get; set; } } }