using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KellyReport_D.Model
{
internal class ProductForecastInput
{
///
/// 年份
///
public int Year { get; set; }
///
/// 产品名称
///
public string Name { get; set; }
///
/// 数量
///
public decimal Quantity { get; set; }
///
/// 金额(含税)
///
public decimal AmountTax { get; set; }
///
/// 金额(未税)
///
public decimal Amount { get; set; }
///
/// 平均单价
///
public decimal PriceAvg { get; set; }
}
}