#region << 版 本 注 释 >> /*-------------------------------------------------------------------- * 版权所有 (c) 2026 WenJY 保留所有权利。 * CLR版本:4.0.30319.42000 * 机器名称:Mr.Wen's MacBook Pro * 命名空间:Sln.Wcs.Model.Domain * 唯一标识:30946586-7D2E-450D-A76D-FF0396AF38B1 * * 创建者:WenJY * 电子邮箱: * 创建时间:2026-05-06 16:19:47 * 版本:V1.0.0 * 描述: * *-------------------------------------------------------------------- * 修改人: * 时间: * 修改说明: * * 版本:V1.0.0 *--------------------------------------------------------------------*/ #endregion << 版 本 注 释 >> using SqlSugar; namespace Sln.Wcs.Model.Domain; /// ///设备信息 /// [SugarTable("base_device_param"), TenantAttribute("core")] public class BaseDeviceParam { /// /// Desc:主键标识 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "obj_id")] public int objId { get; set; } /// /// Desc:参数编号 /// Default: /// Nullable:False /// [SugarColumn(ColumnName = "param_code")] public string paramCode { get; set; } /// /// Desc:设备编号 /// Default: /// Nullable:False /// [SugarColumn(ColumnName = "device_code")] public string deviceCode { get; set; } /// /// Desc:参数名称 /// Default: /// Nullable:False /// [SugarColumn(ColumnName = "param_name")] public string paramName { get; set; } /// /// Desc:参数地址 /// Default: /// Nullable:False /// [SugarColumn(ColumnName = "param_address")] public string paramAddress { get; set; } /// /// Desc:参数类型 /// Default: /// Nullable:False /// [SugarColumn(ColumnName = "param_type")] public string paramType { get; set; } /// /// Desc:操作类型:1-只读;2-只写;0-默认读写 /// Default: /// Nullable:False /// [SugarColumn(ColumnName = "operation_type")] public string operationType { get; set; } /// /// Desc:操作频率(毫秒) /// Default: /// Nullable:False /// [SugarColumn(ColumnName = "operation_frequency")] public string operationFrequency { get; set; } /// /// Desc:是否标识:1-是;0-否 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName = "is_flag")] public int? isFlag { get; set; } /// /// Desc:备注 /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "remark")] public string remark { get; set; } /// /// Desc:创建人 /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "created_by")] public string createdBy { get; set; } /// /// Desc:创建时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "created_time")] public DateTime? createdTime { get; set; } /// /// Desc:更新人 /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "updated_by")] public string updatedBy { get; set; } /// /// Desc:更新时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "updated_time")] public DateTime? updatedTime { get; set; } }