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