Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Response/LxmZHMDReport/MonthOperationReportResp.cs
2025-07-04 09:50:02 +08:00

47 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
{
public class MonthOperationReportResp
{
/// <summary>
/// 主键id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 报表类型 5=店长月度报表 6=加盟商月度报表
/// </summary>
public int ReportType { get; set; }
/// <summary>
/// 是否有报表 1=有0=无
/// </summary>
public int HasReport { get; set; }
/// <summary>
/// 年报中的X年
/// </summary>
public int? YearNum { get; set; }
/// <summary>
/// 月报中的X月
/// </summary>
public int? MonthNum { get; set; }
/// <summary>
/// 单店运营核心指标
/// </summary>
public List<SingleShopOperateResp> OperateList { get; set; }
/// <summary>
/// 产品品项分析
/// </summary>
public List<MonthProductItemAnalysisResp> AnalysisList { get; set; }
}
}