emoticon_api/ARW.Model/Vo/Api/GoodsManager/Goodss/GoodsSpecApiVo.cs
2023-07-14 15:34:47 +08:00

37 lines
753 B
C#

using Newtonsoft.Json;
using OfficeOpenXml.Attributes;
using SqlSugar;
using System;
using System.Collections.Generic;
namespace ARW.Model.Vo.Api.GoodsManager.Goodss
{
/// <summary>
/// 商品规格组展示对象Api
///
/// @author lwh
/// @date 2023-07-13
/// </summary>
public class GoodsSpecApiVo
{
/// <summary>
/// 描述 : 商品规格组Id
/// </summary>
public int SpecId { get; set; }
/// <summary>
/// 描述 :商品规格组名称
/// </summary>
public string Title { get; set; }
/// <summary>
/// 描述 : 商品规格列表
/// </summary>
public List<SpecValueApiVo> SpecValueList { get; set; }
}
}