using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenOperationBizfeeAftechConsultModel Data Structure. /// [Serializable] public class AlipayOpenOperationBizfeeAftechConsultModel : AopObject { /// /// 系统/应用名称 /// [XmlElement("app_name")] public string AppName { get; set; } /// /// 业务流水号 /// [XmlElement("biz_no")] public string BizNo { get; set; } /// /// 客户信息(JSON对象) 包含principalType主体类型、principalId主体Id、extInfo扩展信息等字段。其中,需要从extInfo透传消费的key有:relEntityId关联主体Id。 /// [XmlElement("customer")] public string Customer { get; set; } /// /// 事件码列表(List的JSON对象) /// [XmlElement("event_codes")] public string EventCodes { get; set; } /// /// 计价时间 /// [XmlElement("gmt_charge")] public string GmtCharge { get; set; } /// /// 外部业务流水号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 产品码 /// [XmlElement("product_code")] public string ProductCode { get; set; } /// /// 扩展属性(Map的JSON对象) key和value中不能有英文逗号及等于符号。 /// [XmlElement("properties")] public string Properties { get; set; } /// /// 租户Id /// [XmlElement("tnt_inst_id")] public string TntInstId { get; set; } } }