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 Price { set; get; }
///
/// 订单详情
///
public List OrderDetails { set; get; } = new List();
}
///
/// YW_ORDERDETAILS商品订单详细表
///
public class QueueOrderDetailsDto
{
///
/// 主键ID
///
public string Id { set; get; } = string.Empty;
///
/// 商品名称
///
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; }
}
}