NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiServindustryReservati...

37 lines
1001 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiServindustryReservationResourceSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiServindustryReservationResourceSyncModel : AopObject
{
/// <summary>
/// 口碑为第三方ISV分配的渠道标识如K米的渠道为KMI
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 行业如KTVMASSAGE(足疗)等
/// </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("shop_id")]
public string ShopId { get; set; }
}
}