using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Stock { /// /// 盘点单明细 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreStockCheckTicketDetailRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 单据ID /// [JsonProperty(PropertyName = "ticketId")] public string TicketId { get; set; } /// /// 页码 /// [JsonProperty(PropertyName = "pageNumber")] public int PageNumber { get; set; } /// /// 每页数 /// [JsonProperty(PropertyName = "pageSize")] public int PageSize { get; set; } } }