You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.7 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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