20 lines
346 B
C#
20 lines
346 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 SearchRecVoApi
|
|
{
|
|
public string Title { get; set; }
|
|
}
|
|
|
|
}
|