| using Magicodes.ExporterAndImporter.Core; | 
| using SqlSugar; | 
| using WIDESEAWCS_Core.DB.Models; | 
| using WIDESEAWCS_Core.Tenants; | 
|   | 
| namespace WIDESEAWCS_Model.Models; | 
|   | 
| [SugarTable("Dt_EquipmentProcess", "设备工艺参数")] | 
| public class Dt_EquipmentProcess : BaseEntity | 
| { | 
|     /// <summary> | 
|     /// 主键ID | 
|     /// </summary> | 
|     [ImporterHeader(Name = "主键")] | 
|     [ExporterHeader(DisplayName = "主键")] | 
|     [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] | 
|     public int Id { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 设备名称 | 
|     /// </summary> | 
|     [ImporterHeader(Name = "任务号")] | 
|     [ExporterHeader(DisplayName = "任务号")] | 
|     [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "托盘编号")] | 
|     public string EquipmentName { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 设备类型 | 
|     /// </summary> | 
|     [ImporterHeader(Name = "设备类型")] | 
|     [ExporterHeader(DisplayName = "设备类型")] | 
|     [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "设备类型")] | 
|     public string EquipmentType { get; set; } | 
|   | 
|     /// <summary> | 
|     /// 工单编号 | 
|     /// </summary> | 
|     [ImporterHeader(Name = "工单编号")] | 
|     [ExporterHeader(DisplayName = "工单编号")] | 
|     [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "工单编号")] | 
|     public string WipOrderNo {  get; set; } | 
|   | 
|     /// <summary> | 
|     /// 工艺型号 | 
|     /// </summary> | 
|     [ImporterHeader(Name = "工艺型号")] | 
|     [ExporterHeader(DisplayName = "工艺型号")] | 
|     [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "工艺型号")] | 
|     public string ProductDesc {  get; set; } | 
|   | 
|     /// <summary> | 
|     /// 工艺参数值 | 
|     /// </summary> | 
|     [ImporterHeader(Name = "工艺参数值")] | 
|     [ExporterHeader(DisplayName = "工艺参数值")] | 
|     [SugarColumn(IsNullable = false, Length = int.MaxValue, ColumnDescription = "工艺参数值")] | 
|     public string ProcessValue { get; set; } | 
| } |