60 lines
1.4 KiB
C#
60 lines
1.4 KiB
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core
|
|
{
|
|
/// <summary>
|
|
/// 特殊批次招生
|
|
/// </summary>
|
|
[SugarTable("bus_special_recruit_students", "特殊批次招生")]
|
|
public class BusSpecialRecruitStudents:DEntitySortBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// 招生批次名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "招生批次名称")]
|
|
[Required, MaxLength(200)]
|
|
public string Title { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Ico
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "Ico")]
|
|
[Required, MaxLength(300)]
|
|
public string Ico { get; set; }
|
|
|
|
/// <summary>
|
|
/// 封面
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "封面")]
|
|
[Required, MaxLength(300)]
|
|
public string Pic { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 批次描述
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "批次描述")]
|
|
[Required, MaxLength(4000)]
|
|
public string Summary { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 跳转链接
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "跳转链接")]
|
|
[Required, MaxLength(300)]
|
|
public string Url { get; set; }
|
|
|
|
|
|
}
|
|
}
|