You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2 KiB
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.StoreBusiness
{
/// <summary>
/// 获取单品销售汇总
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class SalesOrderSummaryRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 员工工号
/// </summary>
[JsonProperty(PropertyName = "workerNo")]
public string WorkerNo { get; set; }
/// <summary>
/// 员工工号
/// </summary>
[JsonProperty(PropertyName = "typeIds")]
public string TypeIds { get; set; }
/// <summary>
/// 开始时间(格式:yyyy-MM-dd HH:mm:ss)
/// </summary>
[JsonProperty(PropertyName = "startDate")]
public string StartDate { get; set; }
/// <summary>
/// 结束时间(格式:yyyy-MM-dd HH:mm:ss)
/// </summary>
[JsonProperty(PropertyName = "endDate")]
public string EndDate { get; set; }
}
}