42 lines
868 B
C#
42 lines
868 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 SpecValueApiVo
|
|
{
|
|
|
|
/// <summary>
|
|
/// 描述 : 商品规格值Id
|
|
/// </summary>
|
|
public int SpecValueId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 : 商品规格组Id
|
|
/// </summary>
|
|
public int SpecId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 :商品规格值名称
|
|
/// </summary>
|
|
public string SpecValue { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 : 商品规格值图片
|
|
/// </summary>
|
|
public string Image { get; set; }
|
|
|
|
}
|
|
|
|
}
|