28 lines
464 B
C#
28 lines
464 B
C#
using Newtonsoft.Json;
|
|
using SqlSugar;
|
|
|
|
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; }
|
|
|
|
}
|
|
|
|
}
|