using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Stock { /// /// 经营会计报表详情 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreCostTicketDetailRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 单据ID /// [JsonProperty(PropertyName = "ticketId")] public string TicketId { get; set; } } }