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_TestingProject")]
public class XW_TestingProject
{
///
/// Id
///
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Display(Description = "主键Id")]
[Comment("Id")]
public int Id { get; set; }
///
/// 学校Id
///
[Display(Name = "OrgId")]
[Comment("OrgId")]
[Column(TypeName = "int")]
public int OrgId { get; set; }
///
/// ProjectId
///
[Display(Name = "ProjectId")]
[Comment("ProjectId")]
[Column(TypeName = "int")]
public int ProjectId { get; set; }
///
///名称
///
[Display(Name = "名称")]
[Comment("名称")]
[Column(TypeName = "nvarchar(100)")]
public string ProjectName { get; set; }
///
///IsOpen
///
[Display(Name = "IsOpen")]
[Comment("IsOpen")]
[Column(TypeName = "bit")]
public bool IsOpen { get; set; }
///
///IsShow
///
[Display(Name = "IsShow")]
[Comment("IsShow")]
[Column(TypeName = "bit")]
public bool IsShow { get; set; }
}
}