using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// BarcodeInfoVO Data Structure.
///
[Serializable]
public class BarcodeInfoVO : AopObject
{
///
/// 条形码数字字符串
///
[XmlElement("barcode")]
public string Barcode { get; set; }
///
/// 条形码类型, 目前支持"ean8", "ean13", 前者对应的barcode为8位纯数字字符串,后者为13位纯数字字符串
///
[XmlElement("barcode_type")]
public string BarcodeType { get; set; }
}
}