32 lines
605 B
C#
32 lines
605 B
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
using ARW.Model.Models.Business.GoodsManager.GoodsCategorys;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ARW.Model.Vo.Api.Home
|
|
{
|
|
/// <summary>
|
|
/// 首页推荐类目展示对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-07-08
|
|
/// </summary>
|
|
public class HomeCategoryApiVo
|
|
{
|
|
|
|
/// <summary>
|
|
/// 描述 : 名称
|
|
/// </summary>
|
|
public string Text { get; set; }
|
|
|
|
|
|
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long Key { get; set; }
|
|
|
|
}
|
|
|
|
}
|