28 lines
516 B
C#
28 lines
516 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace DAL.New_Models;
|
|||
|
|
|
|||
|
|
public partial class TbSeason
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// ID
|
|||
|
|
/// </summary>
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 季节名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string Name { get; set; } = null!;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 开始日期
|
|||
|
|
/// </summary>
|
|||
|
|
public string BeginDate { get; set; } = null!;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 结束日期
|
|||
|
|
/// </summary>
|
|||
|
|
public string EndDate { get; set; } = null!;
|
|||
|
|
}
|