70 lines
1.5 KiB
C#
70 lines
1.5 KiB
C#
using Newtonsoft.Json;
|
||
using OfficeOpenXml.Attributes;
|
||
using SqlSugar;
|
||
using System;
|
||
|
||
namespace ARW.Model.Vo.Business.OrderManage.OrderGoodss
|
||
{
|
||
/// <summary>
|
||
/// 订单商品记录展示对象
|
||
///
|
||
/// @author lwh
|
||
/// @date 2023-09-01
|
||
/// </summary>
|
||
public class OrderGoodsVo
|
||
{
|
||
|
||
|
||
/// <summary>
|
||
/// 描述 :
|
||
/// </summary>
|
||
public int OrderGoodsId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 描述 :
|
||
/// </summary>
|
||
[JsonConverter(typeof(ValueToStringConverter))]
|
||
public long OrderGoodsGuid { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 描述 :订单guid
|
||
/// </summary>
|
||
[JsonConverter(typeof(ValueToStringConverter))]
|
||
public long OrderGuid { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 描述 :商品guid
|
||
/// </summary>
|
||
[JsonConverter(typeof(ValueToStringConverter))]
|
||
public long GoodsGuid { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 描述 :商品sku唯一标识
|
||
/// </summary>
|
||
public int? GoodsSkuId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 描述 :商品单价
|
||
/// </summary>
|
||
public decimal GoodsPrice { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 描述 :商品购买数量
|
||
/// </summary>
|
||
public int GoodsTotalNum { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 描述 :商品总额(单价 × 数量)
|
||
/// </summary>
|
||
public decimal GoodsTotalAmoun { get; set; }
|
||
|
||
}
|
||
}
|