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 { /// /// 首页推荐类目展示对象Api /// /// @author lwh /// @date 2023-07-08 /// public class HomeCategoryApiVo { /// /// 描述 : 名称 /// public string Text { get; set; } [JsonConverter(typeof(ValueToStringConverter))] public long Key { get; set; } } }