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