18 lines
513 B
C#
18 lines
513 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|||
|
{
|
|||
|
public partial class ImFltDistParam
|
|||
|
{
|
|||
|
public string Id { get; set; } = null!;
|
|||
|
public string GrpId { get; set; } = null!;
|
|||
|
public string ParamType { get; set; } = null!;
|
|||
|
public int SectionNo { get; set; }
|
|||
|
public int NodeNo { get; set; }
|
|||
|
public double Value { get; set; }
|
|||
|
|
|||
|
public virtual ImFltDistDevGrp Grp { get; set; } = null!;
|
|||
|
}
|
|||
|
}
|