using MyCode.Project.Infrastructure.Common; using System; using System.Collections.Generic; namespace MyCode.Project.Domain.Message.Request.Report40 { public class ManagerHeXin2207Query { /// /// 选择年月的时间,传 "2021-08" 这样的字符串 /// public string SearchTime { get; set; } /// /// 是否全选店铺 0=否; 1=是 /// public int IfAllShop { get; set; } /// /// 查询店铺数组 /// public List ShopIds { get; set; } } public class ManagerFenXiReport2207Query { /// /// 选择对比的时间,传 "2021-08" 这样的字符串 /// public string DuiBi { get; set; } /// /// 店铺ID数组 /// public List ShopIds { get; set; } /// /// 是否全选店铺 0=否; 1=是 /// public int IfAllShop { get; set; } /// /// 自定义时间的查询时间段 /// public TimeRange TimeSearch { get; set; } } public class ManagerYeJi2207Query { /// /// 查询时间类型 0=昨天 1=今天 2=自然月 3=自定义时间 /// public int SearchType { get; set; } /// /// 自定义时间的查询时间段 /// public TimeRange TimeSearch { get; set; } /// /// 是否全选店铺 0=否; 1=是 /// public int IfAllShop { get; set; } /// /// 查询店铺数组 /// public List ShopIds { get; set; } /// /// 自然月选择的年-月 2022-08 /// public string YearMonth { get; set; } /// /// 督导ID, -1=全部 /// public Guid? DuDaoId { get; set; } } public class ManagerHuiYuan2207Query { /// /// 是否全选店铺 0=否; 1=是 /// public int IfAllShop { get; set; } /// /// 查询店铺数组 /// public List ShopIds { get; set; } } public class ShopYeJiPangHang2207Query : ManagerYeJi2207Query { ///// ///// 排序字段 0=日期 1=总业绩 ///// //public int SortField { get; set; } /// /// 排序类型 0=倒序 1=顺序 /// public int SortType { get; set; } } public class GetShopFenXiReport2207 { public Guid UserId { get; set; } public string DuiBi { get; set; } } }