43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiServindustryReservationShopUnbindModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiServindustryReservationShopUnbindModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 口碑为第三方ISV分配的渠道标识,如K米的渠道为ISV_KMI
|
||
/// </summary>
|
||
[XmlElement("channel")]
|
||
public string Channel { get; set; }
|
||
|
||
/// <summary>
|
||
/// 行业,如KTV,MASSAGE(足疗)等
|
||
/// </summary>
|
||
[XmlElement("industry")]
|
||
public string Industry { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户在ISV创建的门店id
|
||
/// </summary>
|
||
[XmlElement("out_shop_id")]
|
||
public string OutShopId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 标识唯一一次请求的id
|
||
/// </summary>
|
||
[XmlElement("request_id")]
|
||
public string RequestId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户在口碑创建的门店id
|
||
/// </summary>
|
||
[XmlElement("shop_id")]
|
||
public string ShopId { get; set; }
|
||
}
|
||
}
|