tanglong 752e8450bc ss
2025-06-06 15:15:42 +08:00

41 lines
1.1 KiB
C#

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")]
public class XW_ProjectMode : EntityBase
{
/// <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; }
}
}