IaVAllChannel.cs 524 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class IaVAllChannel
  6. {
  7. public string ChanId { get; set; } = null!;
  8. public string ChanName { get; set; } = null!;
  9. public string DevId { get; set; } = null!;
  10. public string DevName { get; set; } = null!;
  11. public string ChanType { get; set; } = null!;
  12. public string UseState { get; set; } = null!;
  13. public int? SeqNo { get; set; }
  14. }
  15. }