FbAlarm.cs 602 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.FairbanksRTData.Support
  5. {
  6. public class FbAlarm
  7. {
  8. public string ibank { get; set; }
  9. public DateTime DateTime { get; set; }
  10. public string CodedAlarm { get; set; }
  11. public string Category { get; set; }
  12. public string Type { get; set; }
  13. public string AlarmCode { get; set; }
  14. public string TankAlarm { get; set; }
  15. public int Tank { get; set; }
  16. public int State { get; set; }
  17. public string Note { get; set; }
  18. }
  19. }