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
{
///
/// 查询key
///
public Guid? LxmZHMDReportKey { get; set; }
///
/// 年
///
public int Year { get; set; }
///
/// 月
///
public int Month { get; set; }
///
/// 店铺id
///
public Guid? ShopId { get; set; }
}
}