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