44 lines
887 B
C#
44 lines
887 B
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Business.GoodsManager.GoodsSpecs.GoodsSpecRels
|
|
{
|
|
/// <summary>
|
|
/// 商品与规格值关系记录展示对象
|
|
///
|
|
/// @author 黎文豪
|
|
/// @date 2023-06-19
|
|
/// </summary>
|
|
public class GoodsSpecRelVo
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
public int GoodsSpecRelId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :商品Guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long GoodsGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :规格组ID
|
|
/// </summary>
|
|
public int SpecId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :规格值ID
|
|
/// </summary>
|
|
public int SpecValueId { get; set; }
|
|
|
|
}
|
|
}
|