34 lines
786 B
C#
34 lines
786 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.Advertisement.SearchRecommends;
|
|
|
|
namespace ARW.Model.Dto.Api.Advertisement.SearchRecommends
|
|
{
|
|
|
|
/// <summary>
|
|
/// 搜索推荐查询对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-25
|
|
/// </summary>
|
|
public class SearchRecommendQueryDtoApi : PagerInfo
|
|
{
|
|
public string SearchRecommendTitle { get; set; }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 搜索推荐详情输入对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-25
|
|
/// </summary>
|
|
public class SearchRecommendDtoApi
|
|
{
|
|
[Required(ErrorMessage = "SearchRecommendGuid不能为空")]
|
|
public long SearchRecommendGuid { get; set; }
|
|
}
|
|
|
|
}
|