You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
665 B
C#

using SqlSugar;
namespace ZJ_BYD.Model
{
/// <summary>
/// 年份代码
/// </summary>
[SugarTable("t_year")]
public class T_Year : BaseModel
{
/// <summary>
/// 年份代码
/// </summary>
[SugarColumn(ColumnName = "yearcode")]
public string YearCode { get; set; }
/// <summary>
/// 年份
/// </summary>
[SugarColumn(ColumnName = "yearname")]
public string YearName { get; set; }
/// <summary>
/// 是否被删除
/// </summary>
[SugarColumn(ColumnName = "isdeleted")]
public bool IsDeleted { get; set; }
}
}