NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiTradePosDataSyncModel.cs

25 lines
774 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>
/// KoubeiTradePosDataSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiTradePosDataSyncModel : AopObject
{
/// <summary>
/// 回流规则码,不同的规则码对应不同的回流规范,枚举如下 SYNC_001 对应餐饮业态点单产品回流规范 SYNC_002 对应零售业态售卖产品回流规范
/// </summary>
[XmlElement("biz_code")]
public string BizCode { get; set; }
/// <summary>
/// JSON格式描述业务信息根据回流规范文档传入。
/// </summary>
[XmlElement("content")]
public string Content { get; set; }
}
}