using Business.Core.Attributes; using Business.Model; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Bussiness.Model.Tech { /// /// 发料到工序表 /// [CollectionName("dopbase", "mes_tech_proc_icitem")] public class mes_tech_proc_icitem : BaseEntity { ///// ///// 主键 ///// ////[Key] ////[Description("主键")] ////public long tech_proc_icitem_id { get; set; } /// /// 工艺工序id /// [Required] [Description("工艺工序id")] public long? tech_proc_id { get; set; } /// /// 物料id /// [Required] [Description("物料id")] public long? icitem_id { get; set; } /// /// 数量 /// [Required] [Description("数量")] public int? qty { get; set; } } }