using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SmartCoalApplication.Core.DbOpreate.DbModel
{
[Table("mic_project", Schema = "dbo")]
[Serializable]
public class mic_project
{
public mic_project()
{
}
///
/// 主键ID
///
[Key]
public int id { get; set; }
///
/// 上级id
///
public int parent_id { get; set; }
///
/// 名称
///
public string project_name { get; set; }
///
/// 路径,用于存储完成的文件夹/项目路径
///
public string project_path { get; set; }
///
/// 1顶级分类 2标准 3文件夹 4项目
///
public int project_type { get; set; }
}
}