22 lines
791 B
C#
22 lines
791 B
C#
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<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; }
|
|
public int Ranking { get; set; }
|
|
|
|
}
|
|
}
|