using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Sln.Imm.Daemon.Model.dao; /// /// 设备工艺参数当前值表 /// [SugarTable("BASE_DEVICE_PARAM_VAL"), TenantAttribute("mes")] public class BaseDeviceParamVal { /// /// 备 注:主键 /// [SugarColumn(ColumnName = "RECORD_ID", IsPrimaryKey = true)] public decimal RECORD_ID { get; set; } /// /// 备 注:参数编号 /// [SugarColumn(ColumnName = "PARAM_CODE")] public string? PARAM_CODE { get; set; } /// /// 备 注:设备编号 /// [SugarColumn(ColumnName = "DEVICE_CODE")] public string? DEVICE_CODE { get; set; } /// /// 备 注:设备ID /// [SugarColumn(ColumnName = "DEVICE_ID")] public decimal? DEVICE_ID { get; set; } /// /// 备 注:参数名称 /// [SugarColumn(ColumnName = "PARAM_NAME")] public string? PARAM_NAME { get; set; } /// /// 备 注:参数值 /// [SugarColumn(ColumnName = "PARAM_VALUE")] public string? PARAM_VALUE { get; set; } /// /// 备 注:采集时间 /// [SugarColumn(ColumnName = "COLLECT_TIME")] public DateTime? COLLECT_TIME { get; set; } /// /// 备 注:记录时间(默认当前时间) /// [SugarColumn(ColumnName = "RECORD_TIME")] public DateTime RECORD_TIME { get; set; } /// /// 备 注:参数类型 /// [SugarColumn(ColumnName = "PARAM_TYPE")] public string? PARAM_TYPE { get; set; } }