|
@ -1305,6 +1305,77 @@ namespace TaskManager.Controllers |
|
|
/// 日MRP预警推移:每日物料需求计划的预警情况和趋势分析
|
|
|
/// 日MRP预警推移:每日物料需求计划的预警情况和趋势分析
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public class DailyMRPWarningTrend : BaseEntity { } |
|
|
public class DailyMRPWarningTrend : BaseEntity { } |
|
|
|
|
|
public class DailyMRPWarningTrend { |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主键
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string id { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 工厂代码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string plantId { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 零件号:奇瑞零件号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string materialCode { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 零件名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string materialDescription { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 当前库存
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string quantityCurrent { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 需求日期-格式:yyyy-MM-dd
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string reckonDate { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 需求数量
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string quantityPlanned { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 满足数量
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string quantityPlannedDelivery { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 在途数量
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string quantityInTransit { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 日GAP:日需求数量与满足数量差异
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string dateGap { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 库存GAP:库存推移差异
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string inventoryGap { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建人
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string createByUser { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string createTime { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 修改人
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string updateByUser { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 修改时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string updateTime { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否删除(0:否,1是)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string isDelete { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 版本号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string version { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 供应商共享库存-上午:供应商共享库存的上午时点数据
|
|
|
/// 供应商共享库存-上午:供应商共享库存的上午时点数据
|
|
|