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.
49 lines
1.2 KiB
49 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Server.Model.Dto
|
|
{
|
|
public class PurchaseOrderCountStatisticsResponse
|
|
{
|
|
/// <summary>
|
|
/// 等待付款数量
|
|
/// </summary>
|
|
public long WaitPayCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 等待采购数量(含部分采购)
|
|
/// </summary>
|
|
public long WaitPurchaseCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 等待发货数量(含部分发货)
|
|
/// </summary>
|
|
public long WaitShippment { get; set; }
|
|
|
|
/// <summary>
|
|
/// 等待收货数量(含部分收货)
|
|
/// </summary>
|
|
public long WaitReceiveCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 已完成数量
|
|
/// </summary>
|
|
public long CompletedCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 已取消数量
|
|
/// </summary>
|
|
public long CancelCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 待验收数量
|
|
/// </summary>
|
|
public long WaitCheckCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 待核算数量
|
|
/// </summary>
|
|
public long WaitComputationCount { get; set; }
|
|
}
|
|
}
|
|
|