using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 门店盘点明细删除 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StockCheckTicketDetailDelRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 门店盘点明细Ids(多个以,分割) /// [JsonProperty(PropertyName = "detailIds")] public string DetailIds { get; set; } } }