using Business.Core.Attributes; using Business.Model; using Microsoft.EntityFrameworkCore; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Bussiness.Model.Tech { /// /// 工序作业指导书表 /// [CollectionName("dopbase", "mes_tech_proc_document")] [Comment("工序作业指导书表")] public class mes_tech_proc_document : BaseEntity { ///// ///// 工序作业指导书主键 ///// //[Key] //[Comment("工序作业指导书主键")] //public long tech_proc_doc_id { get; set; } /// /// 工艺工序主键 /// [Required] [Comment("工艺工序主键")] public long? tech_proc_id { get; set; } /// /// 作业指导书主键 /// [Required] [Comment("作业指导书主键")] public long? upload_id { get; set; } /// /// 作业指导书名称 /// [StringLength(100)] [Comment("作业指导书名称")] public string? name { get; set; } } }