32 lines
575 B
C#
32 lines
575 B
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Api.OrderManage.Orders
|
|
{
|
|
/// <summary>
|
|
/// 订单商品规格展示对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-14
|
|
/// </summary>
|
|
public class OrderGoodsSpecApiVo
|
|
{
|
|
/// <summary>
|
|
/// 描述 :规格组名称
|
|
/// </summary>
|
|
public string SpecTitle { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :规格值
|
|
/// </summary>
|
|
public string SpecValue { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|