using System.Collections.Generic; namespace WX.CRM.Model.DTO { public class GroupNewsOrderView { public decimal Gid { get; set; } public string GName { get; set; } public Dictionary> OrderProductCount { get; set; } public decimal AllOrderCount { get; set; } public decimal AllOrderCount2 { get; set; } public decimal AllOrderPrice { get; set; } public Dictionary> RefundOrderProductCount { get; set; } public decimal RefundOrderCount { get; set; } public decimal RefundOrderCount2 { get; set; } } }