emoticon_api/ARW.Model/Dto/Api/Settings/PlatformSpecs/PlatformSpecApiDto.cs
2023-10-22 15:26:27 +08:00

34 lines
773 B
C#

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