123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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_info_item", Schema = "dbo")]
- [Serializable]
- public class mic_project_info_item
- {
- public mic_project_info_item()
- {
-
- }
- ///<summary>
- /// 主键ID
- ///</summary>
- [Key]
- public int id { get; set; }
- /// <summary>
- /// 上级id
- /// </summary>
- public int info_id { get; set; }
- /// <summary>
- /// 名称
- /// </summary>
- public string item_key { get; set; }
- /// <summary>
- /// 内容
- /// </summary>
- public string item_value { get; set; }
- }
- }
|