25 lines
655 B
C#
25 lines
655 B
C#
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; }
|
||
}
|
||
}
|