/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System; namespace CoreCms.Net.Model.ViewModels.UI { /// /// 根据时间查询报表截断获取时间段返回数据 /// public class ReportsBackForGetDate { public DateTime start { get; set; } public DateTime end { get; set; } public int section { get; set; } = 0; public int num { get; set; } = 0; } /// /// 商品销量统计返回dataTable转实体 /// public class GoodsSalesVolume { /// /// 数量 /// public int nums { get; set; } = 0; /// /// 金额 /// public decimal amount { get; set; } = 0; /// /// 名称 /// public string name { get; set; } /// /// 缩略图 /// public string imageUrl { get; set; } /// /// 规格说明 /// public string addon { get; set; } /// /// 货号 /// public string sn { get; set; } } /// /// 商品销量统计返回dataTable转实体 /// public class GoodsCollection { /// /// 数量 /// public int nums { get; set; } = 0; /// /// 商品编号 /// public decimal goodId { get; set; } = 0; /// /// 名称 /// public string goodsName { get; set; } /// /// 缩略图 /// public string images { get; set; } } /// /// 后端首页统计返回UI /// public class StatisticsOut { /// /// 日期 /// public string day { get; set; } /// /// 数量 /// public int nums { get; set; } } }