NewGaoKaoApi/PaymentSDK/AliPay/Domain/QrcodeEntity.cs

37 lines
946 B
C#
Raw 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>
/// QrcodeEntity Data Structure.
/// </summary>
[Serializable]
public class QrcodeEntity : AopObject
{
/// <summary>
/// 桌台ID
/// </summary>
[XmlElement("desk_id")]
public string DeskId { get; set; }
/// <summary>
/// 二维码的ID不传时则为删除这时候必须有relation_id删除该relation_id
/// </summary>
[XmlElement("qrcode_id")]
public string QrcodeId { get; set; }
/// <summary>
/// 已经绑定的二维码关系ID 新增不传,修改删除传
/// </summary>
[XmlElement("relation_id")]
public string RelationId { get; set; }
/// <summary>
/// 门店ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}