using Admin.NET.Core;
using System;
using System.ComponentModel.DataAnnotations;
namespace Admin.NET.Application
{
///
/// 特殊批次招生输入参数
///
public class BusSpecialRecruitStudentsInput : BasePageInput
{
///
/// 招生批次名称
///
public virtual string Title { get; set; }
///
/// 封面
///
public virtual string Pic { get; set; }
///
/// 批次描述
///
public virtual string Summary { get; set; }
///
/// 跳转链接
///
public virtual string Url { get; set; }
///
/// Sort排序
///
public virtual int Sort { get; set; }
}
public class AddBusSpecialRecruitStudentsInput : BusSpecialRecruitStudentsInput
{
}
public class DeleteBusSpecialRecruitStudentsInput : BaseIdInput
{
}
public class UpdateBusSpecialRecruitStudentsInput : BusSpecialRecruitStudentsInput
{
///
/// Id主键
///
[Required(ErrorMessage = "Id主键不能为空")]
public long Id { get; set; }
}
public class QueryeBusSpecialRecruitStudentsInput : BaseIdInput
{
}
}