using Business.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.StructuredDB.Replenishment
{
///
/// 存货周转率设置
///
public class ReplenishmentTurnOverSet : BaseEntity
{
///
/// 地区
///
public string Area { get; set; }
///
/// 产品线
///
public string ProdLine { get; set; }
///
/// 产品系列
///
public string ProdRange { get; set; }
///
/// 规格型号
///
public string Model { get; set; }
///
/// 生命周期
///
public string LifeCycle { get; set; }
///
/// 瑞奇存货周转率
///
public decimal RQTurnOver { get; set; }
///
/// 国科存货周转率
///
public decimal GKTurnOver { get; set; }
///
/// 海王存货周转率
///
public decimal HWTurnOver { get; set; }
}
}