tuiwucarrer/Admin.NET/Admin.NET.Application/Service/CePing/BusSpecialRecruitStudents/Dto/BusSpecialRecruitStudentsOu...

47 lines
1002 B
C#

using System;
namespace Admin.NET.Application
{
/// <summary>
/// 特殊批次招生输出参数
/// </summary>
public class BusSpecialRecruitStudentsOutput
{
/// <summary>
/// 招生批次名称
/// </summary>
public string Title { get; set; }
/// <summary>
/// 封面
/// </summary>
public string Pic { get; set; }
/// <summary>
/// 批次描述
/// </summary>
public string Summary { get; set; }
/// <summary>
/// 跳转链接
/// </summary>
public string Url { get; set; }
/// <summary>
/// Ico
/// </summary>
public string Ico { get; set; }
/// <summary>
/// Sort排序
/// </summary>
public int Sort { get; set; }
/// <summary>
/// Id主键
/// </summary>
public long Id { get; set; }
}
}