using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Stock { /// /// 盘点单列表 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreStockCheckTicketRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 单据号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } /// /// 单据状态 /// [JsonProperty(PropertyName = "status")] public int Status { get; set; } /// /// 页码 /// [JsonProperty(PropertyName = "pageNumber")] public int PageNumber { get; set; } /// /// 每页数 /// [JsonProperty(PropertyName = "pageSize")] public int PageSize { get; set; } /// /// 开始时间 /// [JsonProperty(PropertyName = "startTime")] public string StartTime { get; set; } /// /// 结束时间 /// [JsonProperty(PropertyName = "endTime")] public string EndTime { get; set; } } }