49 lines
1.3 KiB
C#
Raw Normal View History

2025-01-13 22:37:39 +08:00
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
{
/// <summary>
/// 芯未项目模式表
/// </summary>
[Table("XW_ProjectMode")]
2025-02-25 15:33:02 +08:00
public class XW_ProjectMode
2025-01-13 22:37:39 +08:00
{
/// <summary>
/// Id
/// </summary>
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Display(Description = "主键Id")]
[Comment("Id")]
public int Id { get; set; }
/// <summary>
/// ProjectKind
/// </summary>
[Display(Name = "ProjectKind")]
[Comment("ProjectKind")]
[Column(TypeName = "int")]
public int ProjectKind { get; set; }
/// <summary>
///名称
/// </summary>
[Display(Name = "名称")]
[Comment("名称")]
[Column(TypeName = "nvarchar(100)")]
public string Name { get; set; }
2025-02-25 15:33:02 +08:00
/// <summary>
///枚举
/// </summary>
[Display(Name = "枚举")]
[Comment("枚举")]
[Column(TypeName = "nvarchar(100)")]
public string CategoryEnum { get; set; }
2025-01-13 22:37:39 +08:00
}
}