tuiwucarrer/Admin.NET/Admin.NET.Core/Entity/CePing/BusStudyYears.cs

45 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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_studyyears_info", "学年表")]
public class BusStudyYears : DEntitySortTenant
{
/// <summary>
/// 学年名称
/// </summary>
[SugarColumn(ColumnDescription = "学年名称")]
[Required, MaxLength(300)]
public string Name { get; set; }
/// <summary>
/// 学年入学时间
/// </summary>
[SugarColumn(ColumnDescription = "学年入学时间")]
public DateTime StartDays { get; set; }
/// <summary>
/// 学年毕业时间
/// </summary>
[SugarColumn(ColumnDescription = "学年毕业时间")]
public DateTime EndDays { get; set; }
/// <summary>
/// 0在读1已毕业学界
/// </summary>
[SugarColumn(ColumnDescription = "学年状态")]
public int Status { get; set; }
}
}