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