using System; using System.Collections.Generic; using System.Text; namespace PaymentSDK { public class OrderQuery { /// /// 系统生成订单号 /// public string OrderId { get; set; } /// /// 支付金额 /// public decimal total_fee { get; set; } /// /// 商品标题 /// public string body { get; set; } = "志愿好帮手VIP"; /// /// 商品介绍 /// public string detail { get; set; } = "志愿好帮手VIP"; } }