NewGaoKaoApi/PaymentSDK/AliPay/Domain/BarcodeInfoVO.cs

25 lines
655 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>
/// BarcodeInfoVO Data Structure.
/// </summary>
[Serializable]
public class BarcodeInfoVO : AopObject
{
/// <summary>
/// 条形码数字字符串
/// </summary>
[XmlElement("barcode")]
public string Barcode { get; set; }
/// <summary>
/// 条形码类型, 目前支持"ean8", "ean13", 前者对应的barcode为8位纯数字字符串后者为13位纯数字字符串
/// </summary>
[XmlElement("barcode_type")]
public string BarcodeType { get; set; }
}
}