35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
namespace RB_MES_API.Models.Cloud
|
|
{
|
|
/// <summary>
|
|
/// 生主订单变更的源单信息,与委外订单共享类
|
|
/// </summary>
|
|
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; }
|
|
/// <summary>
|
|
/// 单位编码
|
|
/// </summary>
|
|
public string FUnitId { get; set; }
|
|
/// <summary>
|
|
/// 基本单位编码
|
|
/// </summary>
|
|
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; }
|
|
/// <summary>
|
|
/// 业务状态
|
|
/// </summary>
|
|
public string FStatus { get; set; }
|
|
}
|
|
}
|