using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// StockShippingStepInfo Data Structure. /// [Serializable] public class StockShippingStepInfo : AopObject { /// /// 处理地点 /// [XmlElement("event_address")] public string EventAddress { get; set; } /// /// 处理时间 /// [XmlElement("event_time")] public string EventTime { get; set; } /// /// 扩展 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 处理状态 /// [XmlElement("status")] public string Status { get; set; } } }