using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Central.Control.WebApi.Models.Response { /// /// /// public class ProductResponseDto { /// /// 主键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 string Info { set; get; } = string.Empty; /// /// 售卖价 /// public decimal Price { set; get; } /// /// 库存 /// public int Stock { set; get; } } }