You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.3 KiB
C#

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