2024-08-21 16:50:14 +08:00

15 lines
398 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class ImEventParam
{
public string DeviceCtgy { get; set; } = null!;
public int ParamValue { get; set; }
public string ParamDesc { get; set; } = null!;
public virtual ImDevCtgy DeviceCtgyNavigation { get; set; } = null!;
}
}