namespace StopShopping.Services.Models.Resp; /// /// 列表商品 /// public class Product { public int Id { get; set; } public string Name { get; set; } = ""; /// /// 简介 /// /// public string? Description { get; set; } /// /// 图片地址 /// /// public string? LogoUrl { get; set; } /// /// 分类名称 /// /// public string CategoryName { get; set; } = ""; /// /// 最小销售单元 /// /// public string MinimumUnit { get; set; } = ""; /// /// 单价 /// /// public decimal UnitPrice { get; set; } /// /// 已售数量 /// /// public int SoldAmount { get; set; } /// /// 添加时间 /// /// public string CreateTime { get; set; } = ""; } /// /// 详情商品 /// public class ProductInfo : Product { /// /// 分类id /// /// public int CategoryId { get; set; } /// /// 详情 /// /// public string? Detail { get; set; } }