using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SystemParam Data Structure. /// [Serializable] public class SystemParam : AopObject { /// /// 业务功能类型 /// [XmlElement("function")] public string Function { get; set; } /// /// 业务合作伙伴 /// [XmlElement("partner")] public string Partner { get; set; } /// /// 系统幂等请求id /// [XmlElement("request_id")] public string RequestId { get; set; } } }