using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenOperationBizfeeAftechSubscribeModel Data Structure. /// [Serializable] public class AlipayOpenOperationBizfeeAftechSubscribeModel : AopObject { /// /// 系统/应用名称 /// [XmlElement("app_name")] public string AppName { get; set; } /// /// 合约编号 /// [XmlElement("ar_no")] public string ArNo { get; set; } /// /// 客户信息(JSON对象) 包含principalType主体类型、principalId主体Id、extInfo扩展信息等字段。其中,需要从extInfo透传消费的key有:relEntityId关联主体Id。 /// [XmlElement("customer")] public string Customer { get; set; } /// /// 订购费用金额 单位元,最多两位小数。 /// [XmlElement("fee_amount")] public string FeeAmount { get; set; } /// /// 订购费用币种 币种数字编码。 /// [XmlElement("fee_currency")] public string FeeCurrency { get; set; } /// /// 订购开始时间 /// [XmlElement("gmt_begin")] public string GmtBegin { get; set; } /// /// 订购结束时间 /// [XmlElement("gmt_end")] public string GmtEnd { get; set; } /// /// 业务发生时间 /// [XmlElement("gmt_service")] public string GmtService { get; set; } /// /// 机构OU编码 /// [XmlElement("inst_code")] public string InstCode { get; set; } /// /// 外部业务流水号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 订购包量类型 SERVICE_TIME: 包时间 SERVICE_QUANTITY: 包量 /// [XmlElement("pkg_type")] public string PkgType { get; set; } /// /// 产品码 /// [XmlElement("product_code")] public string ProductCode { get; set; } /// /// 扩展属性(Map的JSON对象) key和value中不能有英文逗号及等于符号。 /// [XmlElement("properties")] public string Properties { get; set; } /// /// 关联订单流水号 /// [XmlElement("rel_order_no")] public string RelOrderNo { get; set; } /// /// 订购服务量 传天数/次数等数值。 /// [XmlElement("service_amount")] public string ServiceAmount { get; set; } /// /// 租户Id /// [XmlElement("tnt_inst_id")] public string TntInstId { get; set; } } }