Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Act/Report2301/Add2301ReportDataAct.cs
2025-07-04 09:50:02 +08:00

61 lines
1.6 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 MyCode.Project.Domain.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Act.Report2301
{
public class Add2301ReportDataAct
{
public RpShopZhenduansibiaoSearch RpShopZhenduansibiaoSearch { get; set; }
public RpShopZhenduansibiaoKucunData RpShopZhenduansibiaoKucunData { get; set; }
public RpShopZhenduansibiaoYejiData rpShopZhenduansibiaoYejiData { get; set; }
/// <summary>
/// 日报所属日期,方便查询用,精确到天
/// </summary>
public DateTime SearchDays { get; set; }
}
public class Add2301ReportUseDaysAct
{
/// <summary>
/// 店铺ID
/// </summary>
public string ShopId { get; set; }
/// <summary>
/// Desc:使用天数任意在手机端或pos端使用收银、核销、会员功能记1
/// </summary>
public int? ShiYongTianShu { get; set; }
/// <summary>
/// Desc:时间,方便查询用
/// </summary>
public DateTime? Days { get; set; }
}
public class AddYangBanDian2406ReportDataAct
{
public RpShopYangbandianSearchDay RpShopYangbandianSearchDay { get; set; }
public RpShopYangbandianLaokeDate RpShopYangbandianLaokeDate{ get; set; }
public RpShopYangbandianXinkeDate RpShopYangbandianXinkeDate { get; set; }
/// <summary>
/// 日报所属日期,方便查询用,精确到天
/// </summary>
public DateTime SearchDays { get; set; }
}
}