12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
- {
- public partial class VwPresetPoint
- {
- public string PointId { get; set; } = null!;
- public string DevId { get; set; } = null!;
- public string ChanId { get; set; } = null!;
- public int Number { get; set; }
- public string? Comment { get; set; }
- public string ChanName { get; set; } = null!;
- public int ChanNo { get; set; }
- public string DevName { get; set; } = null!;
- public string? Ip { get; set; }
- public int? Port { get; set; }
- }
- }
|