using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.Settings.PlatformSpecs; namespace ARW.Model.Dto.Api.Settings.PlatformSpecs { /// /// 平台资质与规范查询对象Api /// /// @author lwh /// @date 2023-10-22 /// public class PlatformSpecQueryDtoApi : PagerInfo { public string PlatformSpecTitle { get; set; } } /// /// 平台资质与规范详情输入对象Api /// /// @author lwh /// @date 2023-10-22 /// public class PlatformSpecDtoApi { [Required(ErrorMessage = "PlatformSpecGuid不能为空")] public long PlatformSpecGuid { get; set; } } }