using Newtonsoft.Json; using OfficeOpenXml.Attributes; using SqlSugar; using System; namespace ARW.Model.Vo.Business.OrderManage.Orders { /// /// 订单展示对象 /// /// @author lwh /// @date 2023-08-29 /// public class OrderGoodsVo { /// /// 商品名称 /// public string GoodsName { get; set; } /// /// 商品图片 /// public string GoodsPicture { get; set; } /// /// 商品规格值 /// public string GoodsSpecName { get; set; } /// /// 商品单价 /// public decimal GoodsPrice { get; set; } } }