using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Stock { /// /// 经营会计报表模板 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreCostTicketTemplateInfoRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 时间(不填默认是当前日期) /// [JsonProperty(PropertyName = "dateTime")] public string DateTime { get; set; } } }