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 string GoodsCoding { get; set; } /// /// 商品单价 /// public decimal GoodsPrice { get; set; } /// /// 购买数量 /// public int GoodsTotalNum { get; set; } /// /// 商品总价 /// public decimal GoodsTotalPrice { get; set; } /// /// 商品重量 /// public decimal GoodsWeight { get; set;} } }