using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// StockQuantity Data Structure.
///
[Serializable]
public class StockQuantity : AopObject
{
///
/// 日期
///
[XmlElement("date")]
public string Date { get; set; }
///
/// 库存量
///
[XmlElement("quantity")]
public long Quantity { get; set; }
}
}