步步为盈
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.

65 lines
1.5 KiB

using System.Collections.Generic;
namespace BBWY.Server.Model.Dto
{
/// <summary>
/// 采购单简单信息
/// </summary>
public class OnlinePurchaseOrderSimpleResponse
{
/// <summary>
/// 采购单号
/// </summary>
public string PurchaseOrderId { get; set; }
/// <summary>
/// 订单总额
/// </summary>
public decimal TotalAmount { get; set; }
/// <summary>
/// 货款总额
/// </summary>
public decimal ProductAmount { get; set; }
/// <summary>
/// 运费总额
/// </summary>
public decimal FreightAmount { get; set; }
/// <summary>
/// 采购单简单明细列表
/// </summary>
public IList<OnlinePurchaseOrderSkuSimpleResponse> ItemList { get; set; }
}
/// <summary>
/// 采购单简单明细
/// </summary>
public class OnlinePurchaseOrderSkuSimpleResponse
{
public string ProductId { get; set; }
public string SkuId { get; set; }
public string SpecId { get; set; }
/// <summary>
/// 货款
/// </summary>
public decimal ProductAmount { get; set; }
/// <summary>
/// 运费
/// </summary>
public decimal FreightAmount { get; set; }
/// <summary>
/// 单价
/// </summary>
public decimal Price { get; set; }
public decimal Quantity { get; set; }
}
}