2025-06-06 14:57:20 +08:00

28 lines
793 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; }
}
}