2025-07-21 16:09:02 +08:00

36 lines
1022 B
C#

using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using YD_WeChatApplet.Api.Entitys;
namespace YD_WeChatApplet.Api.SmartSportsEntitys
{
[Table("Y_CurricularTaxonomy")]
public class Y_CurricularTaxonomy : EntityBase
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Display(Description = "主键Id")]
[Comment("Id")]
public int Id { get; set; }
/// <summary>
///分类名称
/// </summary>
[Display(Name = "分类名称")]
[Comment("分类名称")]
[Column(TypeName = "nvarchar(100)")]
public string TaxonomyName { get; set; }
/// <summary>
///课程类型
/// </summary>
[Display(Name = "课程类型")]
[Comment("课程类型")]
[Column(TypeName = "int)")]
public int CurricularType { get; set; }
}
}