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.

45 lines
1.1 KiB

namespace BBWYB.Server.Model.Dto
{
public class OrderCountByStateResponse
{
/// <summary>
/// 待付款数量
/// </summary>
public long WaitPayCount { get; set; }
/// <summary>
/// 待采购数量(含部分采购)
/// </summary>
public int WaitPurchaseCount { get; set; }
/// <summary>
/// 待配置数量
/// </summary>
public long WaitConfigCount { get; set; }
/// <summary>
/// 待发货数量(含部分发货)
/// </summary>
public long WaitShipmentCount { get; set; }
/// <summary>
/// 待收货数量(含部分收货)
/// </summary>
public long WaitReceiveCount { get; set; }
/// <summary>
/// 待验收数量
/// </summary>
public long WaitCheckCount { get; set; }
/// <summary>
/// 待核算数量
/// </summary>
public long WaitComputationCount { get; set; }
/// <summary>
/// 待议价数量
/// </summary>
public long OpitimizationCount { get; set; }
}
}