18 lines
643 B
C#
18 lines
643 B
C#
using SqlSugar;
|
|
using VolPro.Entity.SystemModels;
|
|
|
|
namespace VolPro.Entity.DomainModels
|
|
{
|
|
[Entity(TableCnName="视频通道",TableName="video_channel",DBServer="ServiceDbContext")]
|
|
public partial class video_channel : ServiceEntity
|
|
{
|
|
[SugarColumn(IsPrimaryKey=true)] public int ChannelId { get; set; }
|
|
[SugarColumn(IsPrimaryKey=true)] public int DeviceId { get; set; }
|
|
public string? ChannelNo { get; set; }
|
|
public string? SourceId { get; set; }
|
|
public string? ChannelName { get; set; }
|
|
public string? IsOnline { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
}
|
|
}
|