47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|