18 lines
661 B
C#
18 lines
661 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class GroupNewsOrderView
|
|
{
|
|
public decimal Gid { get; set; }
|
|
public string GName { get; set; }
|
|
public Dictionary<decimal, Dictionary<string, decimal>> OrderProductCount { get; set; }
|
|
public decimal AllOrderCount { get; set; }
|
|
public decimal AllOrderCount2 { get; set; }
|
|
public decimal AllOrderPrice { get; set; }
|
|
public Dictionary<decimal, Dictionary<string, decimal>> RefundOrderProductCount { get; set; }
|
|
public decimal RefundOrderCount { get; set; }
|
|
public decimal RefundOrderCount2 { get; set; }
|
|
}
|
|
}
|