using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.Dto
{
///
/// 库存监控结果
///
public class InventoryMonitoringDto
{
///
/// 物料编码
///
public string ItemNumber { get; set; }
///
/// 补货周期
///
public decimal ReplenishCycle { get; set; }
///
/// 产品线
///
public string ProLine { get; set; }
///
/// 系列
///
public string Series { get; set; }
///
/// 规格型号
///
public string Model { get; set; }
///
/// 工厂库存
///
public decimal FactoryInv { get; set; }
///
/// 国科库存
///
public decimal GKInv { get; set; }
///
/// 海王库存
///
public decimal HWInv { get; set; }
///
/// 全域库存
///
public decimal TotalInv { get; set; }
///
/// T1月需求
///
public decimal T1MonthlyDemand { get; set; }
///
/// T1补货点
///
public decimal ReplenishmentPoint { get; set; }
///
/// 国科预估需求
///
public decimal GKEstimatedDemand { get; set; }
///
/// 海王预估需求
///
public decimal HWEstimatedDemand { get; set; }
///
/// T2总体需求
///
public decimal T2TotalDemand { get; set; }
///
/// 总终端需求
///
public decimal TotalTerminalDemand { get; set; }
///
/// 工厂覆盖平台月
///
public decimal FactoryCoveragePlatformMonth { get; set; }
///
/// 国科库存最高覆盖月
///
public decimal GKCoverageMaxMonth { get; set; }
///
/// 国科库存最低覆盖月
///
public decimal GKCoverageMinMonth { get; set; }
///
/// 国科库存覆盖月
///
public decimal GKCoverageMonth { get; set; }
///
/// 海王最高库存范围
///
public decimal HWCoverageMaxMonth { get; set; }
///
/// 海王最低库存范围
///
public decimal HWCoverageMinMonth { get; set; }
///
/// 海王库存覆盖月
///
public decimal HWCoverageMonth { get; set; }
///
/// 全域覆盖
///
public decimal TotalCoverageMonth { get; set; }
///
///T1库存监控
///
public string T1MonitoringResult { get; set; }
///
///国科库存监控
///
public string GKMonitoringResult { get; set; }
///
///海王库存监控
///
public string HWMonitoringResult { get; set; }
///
///推荐决策
///
public string RecommendDecision { get; set; }
}
}