步步为盈

14 lines
312 B

3 years ago
namespace BBWY.Client.Models
{
public class OrderCountStatisticsResponse
{
public long WaitPurchaseCount { get; set; }
public long ExceptionCount { get; set; }
3 years ago
public long WaitOutStoreCount { get; set; }
public long AfterSaleOrderUnhandleCount { get; set; }
3 years ago
}
}