using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// StockQueryCondition Data Structure. /// [Serializable] public class StockQueryCondition : AopObject { /// /// 库存查询结束时间 /// [XmlElement("end_date")] public string EndDate { get; set; } /// /// 站点列表 /// [XmlArray("position")] [XmlArrayItem("position")] public List Position { get; set; } /// /// 库存查询起始日期 /// [XmlElement("start_date")] public string StartDate { get; set; } } }