using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.Report
{
public class ShopsSearchQuery
{
///
/// 开始日期
///
public DateTime? Begin { get; set; }
///
/// 结束日期
///
public DateTime? End { get; set; }
///
/// 未使用智慧门店 1 选中 0 未选中
///
public int AppletsNo { get; set; }
///
/// 未开通智慧门店 1 选中 0 未选中
///
public int? AppletsFlag { get; set; }
///
/// 店铺名称
///
public string ShopName { get; set; }
///
/// 使用智慧门店 1 选中 0 未选中
///
public int? AppletsYes { get; set; }
}
public class ShopsSearchForGeneralManagerQuery
{
///
/// 开始日期
///
public DateTime? Begin { get; set; }
///
/// 结束日期
///
public DateTime? End { get; set; }
///
/// 未使用智慧门店 1 选中 0 未选中
///
public int AppletsNo { get; set; }
///
/// 使用智慧门店 1 选中 0 未选中
///
public int? AppletsYes { get; set; }
///
/// 选中的大区ID数组
///
public List ZoneList { get; set; }
///
/// 未开通智慧门店 1 选中 0 未选中
///
public int? AppletsFlag { get; set; }
///
/// 店铺名称
///
public string ShopName { get; set; }
}
}