|
|
@@ -0,0 +1,48 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace Business.Dto
|
|
|
+{
|
|
|
+ public class ReplenishmentDto
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 补货模型计算周期,M表示月,W表示周,D表示天
|
|
|
+ /// </summary>
|
|
|
+ public string ReplenishmentCalcPeriod { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 历史出库数据(月):拟使用h月的历史数据参与补货模型的计算
|
|
|
+ /// </summary>
|
|
|
+ public int HistoryOutStockMonth { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 销售预测数据(月):拟使用f月的销售预测数据参与补货模型的计算
|
|
|
+ /// </summary>
|
|
|
+ public int SaleFcstMonth { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 销售预测录入日期:拟每月的15 ~20日录入销售预测数据
|
|
|
+ /// </summary>
|
|
|
+ public int SaleFcstEntryDate { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 更新周数:wn, 每次计算时需要更新的周数,目前为12周,但只有4周(工厂内部)+4周(发给供应商)用于指导生产
|
|
|
+ /// </summary>
|
|
|
+ public int UpdateWeeks { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 周计划更新日期:每周四进行更新(是按照国际1表示周日2表示周一还是按照国内习惯1表示周一?)
|
|
|
+ /// </summary>
|
|
|
+ public int WeekPlanUpdateDay { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 长周期物料的定义:供应提前期大于D天,定义为长周期
|
|
|
+ /// 注:瑞贝目前是每周日更新 长周期物料需求计算:M+n月。瑞奇的采购周期可长达160天左右,需要6个月的提前计算。
|
|
|
+ /// 注:瑞贝有超过12个月的采购周期,在没有12个月的预测时,只能人工估算并手动下订单。
|
|
|
+ /// </summary>
|
|
|
+ public int LongPeriodDay { get; set; }
|
|
|
+ }
|
|
|
+}
|