using Ewide.Core;
using Ewide.Core.Util;
using Furion;
using Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Vote.Services.Entities
{
///
/// 项目表
///
public class Projects_2025 : DEntityBase//, IEntitySeedData
{
///
/// 项目序号
///
[Comment("项目序号")]
public int serial_number { get; set; }
///
/// 工程名称
///
[Comment("工程名称")]
public string name { get; set; }
///
/// 项目类型
///
[Comment("项目类型")]
public EnumProjectType type { get; set; }
///
///
///
[NotMapped]
public string type_title
{
get
{
return type.GetEnumDescription();
}
}
public int is_no_inspection { get; set; }
}
}