21 lines
433 B
C#
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; }
|
|
}
|
|
|
|
}
|