using Business.Core.Attributes; using Business.Model; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Bussiness.Model.Tech { /// /// 治具表(工装表) /// [CollectionName("dopbase", "mes_tech_proc_accessory")] public class mes_tech_proc_accessory : BaseEntity { ///// ///// 治具主键 ///// //[Key] //[Description("治具主键")] //public long tech_proc_acc_id { get; set; } /// /// 工艺工序主键 /// [Required] [Description("工艺工序主键")] public long? tech_proc_id { get; set; } /// /// 工装id /// [Required] [Description("工装id")] public long? equip_id { get; set; } /// /// 工装编号 /// [Required] [StringLength(100)] [Description("工装编号")] public string? equip_no { get; set; } /// /// 数量 /// [Required] [Description("数量")] public int? qty { get; set; } } }