12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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 PaintDotNet.DbOpreate.DbModel
- {
- [Table("mic_project", Schema = "dbo")]
- [Serializable]
- public class mic_project
- {
- public mic_project()
- {
-
- }
- ///<summary>
- /// 主键ID
- ///</summary>
- [Key]
- public int id { get; set; }
- /// <summary>
- /// 上级id
- /// </summary>
- public int parent_id { get; set; }
- /// <summary>
- /// 名称
- /// </summary>
- public string project_name { get; set; }
- /// <summary>
- /// 路径,用于存储完成的文件夹/项目路径
- /// </summary>
- public string project_path { get; set; }
- /// <summary>
- /// 1顶级分类 2标准 3文件夹 4项目
- /// </summary>
- public int project_type { get; set; }
- }
- }
|