步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.7 KiB

3 years ago
namespace BBWY.Client.Models
{
public class ToDayOrderAchievement : NotifyObject
{
private decimal saleAmount;
private decimal profit;
private decimal profitRaito;
private int orderCount;
private decimal purchaseAmount;
private decimal deliveryExpressFreight;
private decimal platformCommissionAmount;
private decimal totalCost;
/// <summary>
/// 销售额
/// </summary>
public decimal SaleAmount { get => saleAmount; set { Set(ref saleAmount, value); } }
/// <summary>
/// 总成本
/// </summary>
public decimal TotalCost { get => totalCost; set { Set(ref totalCost, value); } }
/// <summary>
/// 利润
/// </summary>
public decimal Profit { get => profit; set { Set(ref profit, value); } }
/// <summary>
/// 利润比
/// </summary>
public decimal ProfitRaito { get => profitRaito; set { Set(ref profitRaito, value); } }
/// <summary>
/// 订单数
/// </summary>
public int OrderCount { get => orderCount; set { Set(ref orderCount, value); } }
/// <summary>
/// 采购金额
/// </summary>
public decimal PurchaseAmount { get => purchaseAmount; set { Set(ref purchaseAmount, value); } }
/// <summary>
/// 销售运费
/// </summary>
public decimal DeliveryExpressFreight { get => deliveryExpressFreight; set { Set(ref deliveryExpressFreight, value); } }
/// <summary>
/// 平台扣点
/// </summary>
public decimal PlatformCommissionAmount { get => platformCommissionAmount; set { Set(ref platformCommissionAmount, value); } }
}
}