22 lines
502 B
C#
22 lines
502 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.Advertisement.Banners;
|
|
|
|
namespace ARW.Model.Dto.Api.Advertisement.Banners
|
|
{
|
|
|
|
/// <summary>
|
|
/// 轮播图查询对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-09
|
|
/// </summary>
|
|
public class BannerQueryDtoApi : PagerInfo
|
|
{
|
|
[Required(ErrorMessage = "轮播图位置不能为空")]
|
|
public int BannerPosition { get; set; }
|
|
}
|
|
|
|
}
|