using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Central.Control.WebApi.Models.Response { /// /// /// public class OrderResponseDto { /// /// 订单id /// public string OrderId { set; get; } = string.Empty; /// /// 需要支付价格 /// public decimal Price { set; get; } /// /// 支付链接-当前预下单请求生成的二维码码串,可以用二维码生成工具根据该码串值生成对应的二维码 /// public string QrCode { get; set; } } }