using Business.Model; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Bussiness.Model.Tech { /// /// 工艺路径表 /// public class mes_technique : BaseEntity { /// /// 工艺路径主键 /// [Key] [Description("工艺路径主键")] public long tech_id { get; set; } /// /// 工艺路径名称 /// [Required] [StringLength(100)] [Description("工艺路径名称")] public string tech_name { get; set; } /// /// 效率计算层级 /// [Required] [Description("效率计算层级")] public int level { get; set; } /// /// 产品 /// [StringLength(100)] [Description("产品")] public string? bom { get; set; } /// /// 产品版本 /// [StringLength(100)] [Description("产品版本")] public string? bomver { get; set; } /// /// 描述 /// [StringLength(100)] [Description("描述")] public string? desc { get; set; } } }