32 lines
668 B
C#
32 lines
668 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MyCode.Project.Domain.Message.Request.LxmZHMDReport
|
|||
|
|
{
|
|||
|
|
public class MonthOperationReportReq
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询key
|
|||
|
|
/// </summary>
|
|||
|
|
public Guid? LxmZHMDReportKey { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 年
|
|||
|
|
/// </summary>
|
|||
|
|
public int Year { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 月
|
|||
|
|
/// </summary>
|
|||
|
|
public int Month { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 店铺id
|
|||
|
|
/// </summary>
|
|||
|
|
public Guid? ShopId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|