ImFltDistParam.cs 513 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImFltDistParam
  6. {
  7. public string Id { get; set; } = null!;
  8. public string GrpId { get; set; } = null!;
  9. public string ParamType { get; set; } = null!;
  10. public int SectionNo { get; set; }
  11. public int NodeNo { get; set; }
  12. public double Value { get; set; }
  13. public virtual ImFltDistDevGrp Grp { get; set; } = null!;
  14. }
  15. }