KellyReport_D/Model/ProductForecastInput.cs

39 lines
882 B
C#

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