2025-04-24 18:31:27 +08:00

61 lines
1.5 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.Message.Response.User;
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 BfyApiKeyAct
{
/// <summary>
/// 数据字符串
/// </summary>
public string Json { get; set; }
/// <summary>
/// 查询key
/// </summary>
public string LxmZHMDReportKey { get; set; }
public LoginInfo loginInfo { get; set; }
}
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; }
}
}