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