using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ZhimaMerchantOrderRentCancelModel Data Structure. /// [Serializable] public class ZhimaMerchantOrderRentCancelModel : AopObject { /// /// 信用借还订单号 /// [JsonProperty("order_no")] public string OrderNo { get; set; } /// /// 信用借还的产品码:w1010100000000002858 /// [JsonProperty("product_code")] public string ProductCode { get; set; } } }