key1_beacon_api/ARW.Model/Vo/Api/Custom/HistorySearchs/SearchTermCount.cs
2023-10-09 22:17:07 +08:00

21 lines
391 B
C#

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