using System.Collections.Generic; namespace GxPress.Result.Order { /// /// 订单返回 /// public class OrderResult { } /// /// 财务中心 /// public class OrderFinanceResult { /// /// 数据集合 /// /// public IEnumerable Items { get; set; } /// /// 显示价格 /// /// public decimal ShowPrice { get; set; } /// /// 总额 /// /// public decimal AllPrice { get; set; } /// /// 订单数量 /// /// public int AllOrderCount { get; set; } /// /// VIP用户数 /// /// public int VipUserCount { get; set; } /// /// Vip总额 /// /// public decimal VipAllPrice { get; set; } /// /// Vip订单数量 /// /// public int VipAllOrderCount { get; set; } /// /// 总数量 /// /// public int Total { get; set; } } }