using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Central.Control.WebApi.Models.Response { /// /// /// public class QueueOrderResponseDto { /// /// 主键id /// public string OrderId { set; get; } = string.Empty; /// /// 订单金额 /// public decimal TotalPrice { set; get; } /// /// 商品名称 /// public string Name { set; get; } = string.Empty; /// /// 商品编号(唯一) /// public string Code { set; get; } = string.Empty; /// /// 商品图片 /// public string Img { set; get; } = string.Empty; /// /// 售卖价 /// public decimal Price { set; get; } /// /// 购买数量 /// public int Count { set; get; } } }