using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 盘点单状态更新 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StockCheckTicketStatusUpdateRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 仓库ID /// [JsonProperty(PropertyName = "storageId")] public string StorageId { get; set; } /// /// 操作类型(1-审核;2-作废;) /// [JsonProperty(PropertyName = "status")] public int Status { get; set; } /// /// 操作员工号 /// [JsonProperty(PropertyName = "checkMan")] public string CheckMan { get; set; } } }