using Business.Domain;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.StructuredDB.SaleFcst
{
///
/// 月度发货计划
///
public class MonthlyShipmentPlan : BaseEntity
{
///
/// 年
///
public int Year { get; set; }
///
/// 地区
///
public string Area { get; set; }
///
/// 产品线
///
public string ProdLine { get; set; }
///
/// 产品系列
///
public string ProdRange { get; set; }
///
/// 规格型号
///
public string Model { get; set; }
///
/// 计划年月
///
public string PlanMonth { get; set; }
///
/// 数量
///
public decimal Qty { get; set; }
///
/// 排序编码
///
public int OrderNum { get; set; }
///
/// 生命周期
///
public string LifeCycle { get; set; }
///
/// SAP料号
///
public string SAPItemNumber { get; set; }
///
/// 语种
///
public string Languages { get; set; }
///
/// 销售/渠道
///
public string DistributionChannel { get; set; }
}
}