10 changed files with 130 additions and 7 deletions
@ -0,0 +1,49 @@ |
|||||
|
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; } |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue