using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenOperationBizfeeAftechCancelModel Data Structure. /// [Serializable] public class AlipayOpenOperationBizfeeAftechCancelModel : AopObject { /// /// 系统/应用名称 /// [XmlElement("app_name")] public string AppName { get; set; } /// /// 业务发生时间 /// [XmlElement("gmt_service")] public string GmtService { get; set; } /// /// 订单流水号 /// [XmlElement("order_no")] public string OrderNo { get; set; } /// /// 外部业务流水号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 租户Id /// [XmlElement("tnt_inst_id")] public string TntInstId { get; set; } } }