using MyCode.Project.Infrastructure.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.Report2301
{
public class MonthOperationReportReq
{
///
/// 月报的年月字符串 例如 2023-01
///
public string Days { get; set; }
///
/// 店铺id
///
public Guid? ShopId { get; set; }
}
public class MonthOperationReportApiReq
{
///
/// 查询key
///
public string LxmZHMDReportKey { get; set; }
///
/// 年
///
public int Year { get; set; }
///
/// 月
///
public int Month { get; set; }
///
/// 店铺id
///
public Guid? ShopId { get; set; }
}
public class RpShopZhenduansibiaoYejiDataReq
{
///
/// 查询key
///
public string LxmZHMDReportKey { get; set; }
///
/// 店铺id列表
///
public List ShopIdList { get; set; }
///
/// 时间
///
public TimeRange TimeRange { get; set; }
}
public class ShopLabelSearch
{
//2024-01-24 此标签条件只影响区域内容的 指定店铺 板块,不影响其他地方包括店铺列表显示的数量
///
/// 查询类型 0=没选此条件 1= 或关系 2= 且关系
///
public int SearchType { get; set; }
///
/// 选中的标签ID数组
///
public List LabelIds { get; set; }
}
}