初始化
This commit is contained in:
27
DAL/New_Models/TbSeason.cs
Normal file
27
DAL/New_Models/TbSeason.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user