91 lines
1.8 KiB
C#
91 lines
1.8 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Message.Request.Report40
|
|||
|
{
|
|||
|
|
|||
|
public class EmployeePerformanceRankingQuery
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 开始日期
|
|||
|
/// </summary>
|
|||
|
public DateTime BeginTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 结束日期
|
|||
|
/// </summary>
|
|||
|
public DateTime EndTime { get; set; }
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 查询店铺ID
|
|||
|
/// </summary>
|
|||
|
public Guid ShopId { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class ReportDetail40Query
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 查询日期
|
|||
|
/// </summary>
|
|||
|
public DateTime Date { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 店员ID
|
|||
|
/// </summary>
|
|||
|
public Guid? Clerkid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 店铺主键ID
|
|||
|
/// </summary>
|
|||
|
public Guid Shopid { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public class ReportShouGongFeiQuery
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 开始日期
|
|||
|
/// </summary>
|
|||
|
public DateTime BeginTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 结束日期
|
|||
|
/// </summary>
|
|||
|
public DateTime EndTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 店员ID
|
|||
|
/// </summary>
|
|||
|
public Guid? ClerkId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 店铺主键ID
|
|||
|
/// </summary>
|
|||
|
public Guid Shopid { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public class MemberConsumptionRankingsHomePageRespQuery
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 查询类型 0=全部 1=最近30天
|
|||
|
/// </summary>
|
|||
|
public int SearchType { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 查询店铺ID
|
|||
|
/// </summary>
|
|||
|
public Guid ShopId { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|