using Business.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.StructuredDB.SaleFcst
{
///
/// 年度生产大纲
///
public class AnnualProductionOutline : BaseEntity
{
///
/// 年
///
public int Year { get; set; }
///
/// 地区
///
public string Area { get; set; }
///
/// 产品线
///
public string ProdLine { get; set; }
///
/// 产品系列
///
public string ProdRange { get; set; }
///
/// 车间线体
///
public string WorkshopLine { get; set; }
///
/// SAP料号
///
public string SAPItemNumber { get; set; }
///
/// 规格型号
///
public string Model { get; set; }
///
/// 语种
///
public string Languages { get; set; }
///
/// 计划年月
///
public string PlanMonth { get; set; }
///
/// 数量
///
public decimal Qty { get; set; }
///
/// 标准工时
///
public decimal StandardHours { get; set; }
///
/// 组装工时
///
public decimal AssemblyHours { get; set; }
///
/// 热封工时
///
public decimal HeatSealingHours { get; set; }
///
/// 包装工时
///
public decimal PackagingHours { get; set; }
///
/// 工时合计
///
public decimal Totalhours { get; set; }
///
/// 排序编码
///
public int OrderNum { get; set; }
}
}