using System.Collections.Generic; namespace WX.CRM.Model.DTO { public class UserNewsOrderView { public decimal Eid { get; set; } public string UName { get; set; } public decimal IsDismiss { 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; } public int Ranking { get; set; } } }