120 lines
3.5 KiB
C#
120 lines
3.5 KiB
C#
/*
|
||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||
*如果数据库字段发生变化,请在代码生器重新生成此Model
|
||
*/
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.ComponentModel.DataAnnotations;
|
||
using System.ComponentModel.DataAnnotations.Schema;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using SqlSugar;
|
||
using VolPro.Entity.SystemModels;
|
||
|
||
namespace VolPro.Entity.DomainModels
|
||
{
|
||
[Entity(TableCnName = "设备管理_视频通道",TableName = "video_channel",DetailTable = new Type[] { typeof(video_record)},DetailTableCnName = "录像记录",DBServer = "ServiceDbContext")]
|
||
public partial class video_channel:ServiceEntity
|
||
{
|
||
/// <summary>
|
||
///通道记录ID
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||
[Key]
|
||
[Display(Name ="通道记录ID")]
|
||
[Column(TypeName="int")]
|
||
[Editable(true)]
|
||
[Required(AllowEmptyStrings=false)]
|
||
public int ChannelId { get; set; }
|
||
|
||
/// <summary>
|
||
///Owl系统通道ID
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey = true)]
|
||
[Key]
|
||
[Display(Name ="Owl系统通道ID")]
|
||
[MaxLength(64)]
|
||
[Column(TypeName="nvarchar(64)")]
|
||
[Editable(true)]
|
||
[Required(AllowEmptyStrings=false)]
|
||
public string OwlChannelId { get; set; }
|
||
|
||
/// <summary>
|
||
///关联Base_Device设备ID
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||
[Key]
|
||
[Display(Name ="关联Base_Device设备ID")]
|
||
[Column(TypeName="int")]
|
||
[Editable(true)]
|
||
[Required(AllowEmptyStrings=false)]
|
||
public int DeviceId { get; set; }
|
||
|
||
/// <summary>
|
||
///Owl流应用名
|
||
/// </summary>
|
||
[Display(Name ="Owl流应用名")]
|
||
[MaxLength(50)]
|
||
[Column(TypeName="nvarchar(50)")]
|
||
[Editable(true)]
|
||
public string OwlStreamApp { get; set; }
|
||
|
||
/// <summary>
|
||
///Owl流名称
|
||
/// </summary>
|
||
[Display(Name ="Owl流名称")]
|
||
[MaxLength(100)]
|
||
[Column(TypeName="nvarchar(100)")]
|
||
[Editable(true)]
|
||
public string OwlStreamName { get; set; }
|
||
|
||
/// <summary>
|
||
///是否支持云台
|
||
/// </summary>
|
||
[Display(Name ="是否支持云台")]
|
||
[Column(TypeName="tinyint")]
|
||
[Editable(true)]
|
||
public byte? HasPtz { get; set; }
|
||
|
||
/// <summary>
|
||
///是否支持录像
|
||
/// </summary>
|
||
[Display(Name ="是否支持录像")]
|
||
[Column(TypeName="tinyint")]
|
||
[Editable(true)]
|
||
public byte? HasRecording { get; set; }
|
||
|
||
/// <summary>
|
||
///录像模式
|
||
/// </summary>
|
||
[Display(Name ="录像模式")]
|
||
[Column(TypeName="int")]
|
||
[Editable(true)]
|
||
public int? RecordMode { get; set; }
|
||
|
||
/// <summary>
|
||
///快照地址
|
||
/// </summary>
|
||
[Display(Name ="快照地址")]
|
||
[MaxLength(500)]
|
||
[Column(TypeName="nvarchar(500)")]
|
||
[Editable(true)]
|
||
public string SnapshotUrl { get; set; }
|
||
|
||
/// <summary>
|
||
///创建时间
|
||
/// </summary>
|
||
[Display(Name ="创建时间")]
|
||
[Column(TypeName="datetime")]
|
||
[Editable(true)]
|
||
public DateTime? CreateDate { get; set; }
|
||
|
||
[Display(Name ="录像记录")]
|
||
[ForeignKey("ChannelId")][Navigate(NavigateType.OneToMany,nameof(ChannelId),nameof(ChannelId))]
|
||
public List<video_record> video_record { get; set; }
|
||
|
||
|
||
|
||
}
|
||
} |