using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using YD_XinWei.Api.Entitys; namespace YD_XinWei.Api.SmartSportsEntitys { /// /// 芯未项目模式表 /// [Table("XW_ProjectMode")] public class XW_ProjectMode : EntityBase { /// /// Id /// [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] [Display(Description = "主键Id")] [Comment("Id")] public int Id { get; set; } /// /// ProjectKind /// [Display(Name = "ProjectKind")] [Comment("ProjectKind")] [Column(TypeName = "int")] public int ProjectKind { get; set; } /// ///名称 /// [Display(Name = "名称")] [Comment("名称")] [Column(TypeName = "nvarchar(100)")] public string Name { get; set; } } }