using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ErrorLog Data Structure. /// [Serializable] public class ErrorLog : AopObject { /// /// 错误发生时间 /// [XmlElement("datetime")] public string Datetime { get; set; } /// /// 错误信息 /// [XmlElement("error_msg")] public string ErrorMsg { get; set; } /// /// 支付宝登录ID /// [XmlElement("logon_id")] public string LogonId { get; set; } /// /// 手机号码 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// 错误日志ID /// [XmlElement("trace_id")] public string TraceId { get; set; } } }