using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.Settings.PlatformSpecs; namespace ARW.Model.Dto.Business.Settings.PlatformSpecs { /// /// 平台资质与规范输入对象 /// /// @author lwh /// @date 2023-10-22 /// public class PlatformSpecDto { public int PlatformSpecId { get; set; } public long PlatformSpecGuid { get; set; } [Required(ErrorMessage = "标题不能为空")] public string PlatformSpecTitle { get; set; } [Required(ErrorMessage = "内容不能为空")] public string PlatformSpecContent { get; set; } [Required(ErrorMessage = "排序不能为空")] public int PlatformSpecSort { get; set; } } /// /// 平台资质与规范查询对象 /// /// @author lwh /// @date 2023-10-22 /// public class PlatformSpecQueryDto : PagerInfo { public string PlatformSpecTitle { get; set; } public string ids { get; set; } } }