using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.QiMai { /// /// 门店信息查询 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class QiMaiSaletime { /// /// 营业状态 /// [JsonProperty(PropertyName = "worktime")] public List Worktime { get; set; } } }