using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.ThirdPartyOrderData { /// /// 门店停业 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class ProgramStoreStopData { //==================================private================================== #region field //企业编号 private string tenantId; //巨为门店ID private string storeId; #endregion //==================================public================================== #region tenantId 企业编号 /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string Tenantid { get { return tenantId; } set { tenantId = value; } } #endregion #region storeId 巨为门店ID /// /// 巨为门店ID /// [JsonProperty(PropertyName = "storeId")] public string Storeid { get { return storeId; } set { storeId = value; } } #endregion } }