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; }
///
///分类名称
///
[Display(Name = "分类名称")]
[Comment("分类名称")]
[Column(TypeName = "nvarchar(100)")]
public string TaxonomyName { get; set; }
///
///课程类型
///
[Display(Name = "课程类型")]
[Comment("课程类型")]
[Column(TypeName = "int)")]
public int CurricularType { get; set; }
}
}