emoticon_api/ARW.Model/Dto/Api/Custom/HistorySearchs/HistorySearchApiDto.cs
2023-10-09 22:17:07 +08:00

21 lines
433 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.Custom.HistorySearchs;
namespace ARW.Model.Dto.Api.Custom.HistorySearchs
{
/// <summary>
/// 历史搜索查询对象Api
///
/// @author lwh
/// @date 2023-10-09
/// </summary>
public class HistorySearchQueryDtoApi
{
public long CustomerGuid { get; set; }
}
}