35 lines
758 B
C#
35 lines
758 B
C#
using ARW.Model.Models.Business.GoodsManager.GoodsSpecs.GoodsSkus;
|
|
using ARW.Model.Vo.Business.GoodsManager.GoodsSpecs.GoodsSkus;
|
|
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ARW.Model.Vo.Business.GoodsManager.Goodss
|
|
{
|
|
/// <summary>
|
|
/// 商品规格列表展示对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-06-26
|
|
/// </summary>
|
|
public class GoodsSpecSkutVo
|
|
{
|
|
|
|
/// <summary>
|
|
/// 描述 :规格列表
|
|
/// </summary>
|
|
public List<GoodsSpecListVo> GoodsSpecList { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :Sku列表
|
|
/// </summary>
|
|
public List<GoodsSkuVo> SkuList { get; set; }
|
|
|
|
}
|
|
|
|
|
|
}
|