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", Schema = "dbo")] [Serializable] public class mic_project_info { public mic_project_info() { } /// /// 主键ID /// [Key] public int id { get; set; } /// /// 上级id /// public int project_id { get; set; } /// /// 项目编号 /// public string project_code { get; set; } /// /// 评级日期 /// public DateTime project_rating { get; set; } /// /// 送检人 /// public string project_sender { get; set; } /// /// 联系人 /// public string project_contact { get; set; } /// /// 送检单位 /// public string project_company { get; set; } /// /// 送检日期 /// public DateTime project_date { get; set; } } }