18 lines
541 B
C#
Raw Normal View History

2024-08-21 16:50:14 +08:00
using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class TbPresetPoint
{
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 virtual TbAidVideoChannel Chan { get; set; } = null!;
public virtual TbAidVideoDev Dev { get; set; } = null!;
}
}