ImDeviceActRule.cs 638 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImDeviceActRule
  6. {
  7. public string RuleId { get; set; } = null!;
  8. public string DataId { get; set; } = null!;
  9. public int SeqNo { get; set; }
  10. public string LogicExpr { get; set; } = null!;
  11. public string LogicValue { get; set; } = null!;
  12. public string ActType { get; set; } = null!;
  13. public string? ActParam { get; set; }
  14. public string State { get; set; } = null!;
  15. public virtual ImDeviceDatum Data { get; set; } = null!;
  16. }
  17. }