using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// SubCertDetail Data Structure.
///
[Serializable]
public class SubCertDetail : AopObject
{
///
/// 凭证批次号
///
[XmlElement("lot_num")]
public string LotNum { get; set; }
///
/// 子凭证有效点数
///
[XmlElement("lot_point")]
public string LotPoint { get; set; }
///
/// 子凭证编号
///
[XmlElement("sub_lotnum")]
public string SubLotnum { get; set; }
}
}