using Newtonsoft.Json; using OfficeOpenXml.Attributes; using SqlSugar; using System; namespace ARW.Model.Vo.Api.Custom.HistorySearchs { /// /// 热门搜索对象Api /// /// @author lwh /// @date 2023-10-09 /// public class SearchTermCount { public string SearchTerm { get; set; } public int Count { get; set; } } }