18 lines
513 B
C#
Raw Normal View History

2024-08-21 16:50:14 +08:00
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!;
}
}