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.

61 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.Card
{
/// <summary>
/// 门店盘点分析
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class StockCheckSummaryRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 盘点单编号
/// </summary>
[JsonProperty(PropertyName = "no")]
public string No { get; set; }
/// <summary>
/// 开始时间(如:2017-07-12 13:04:00)
/// </summary>
[JsonProperty(PropertyName = "startTime")]
public string StartTime { get; set; }
/// <summary>
/// 结束时间(如:2017-07-12 13:04:59)
/// </summary>
[JsonProperty(PropertyName = "endTime")]
public string EndTime { get; set; }
/// <summary>
/// 查询关键字
/// </summary>
[JsonProperty(PropertyName = "storageId")]
public string StorageId { get; set; }
/// <summary>
/// 商品类别ID
/// </summary>
[JsonProperty(PropertyName = "typeId")]
public string TypeId { get; set; }
/// <summary>
/// 商品名称/编号
/// </summary>
[JsonProperty(PropertyName = "keyword")]
public string Keyword { get; set; }
}
}