V4完成: 预览+云台整合 操作列JSX按钮 全链路调通
This commit is contained in:
@@ -11,17 +11,17 @@ namespace VolPro.Entity.DomainModels
|
||||
{
|
||||
public partial class base_device
|
||||
{
|
||||
/// <summary>导航属性:关联视频通道扩展记录(一对一)</summary>
|
||||
[Navigate(NavigateType.OneToOne, nameof(DeviceId), nameof(video_channel.DeviceId))]
|
||||
public video_channel? VideoChannel { get; set; }
|
||||
/////// <summary>导航属性:关联视频通道扩展记录(一对一)</summary>
|
||||
////[Navigate(NavigateType.OneToOne, nameof(DeviceId), nameof(video_channel.DeviceId))]
|
||||
////public video_channel? VideoChannel { get; set; }
|
||||
|
||||
/// <summary>导航属性:关联告警记录(一对多)</summary>
|
||||
[Navigate(NavigateType.OneToMany, nameof(DeviceId), nameof(iot_alarm.DeviceId))]
|
||||
public List<iot_alarm>? Alarms { get; set; }
|
||||
/////// <summary>导航属性:关联告警记录(一对多)</summary>
|
||||
////[Navigate(NavigateType.OneToMany, nameof(DeviceId), nameof(iot_alarm.DeviceId))]
|
||||
////public List<iot_alarm>? Alarms { get; set; }
|
||||
|
||||
/// <summary>导航属性:关联数据归档(一对多)</summary>
|
||||
[Navigate(NavigateType.OneToMany, nameof(DeviceId), nameof(iot_devicedata.DeviceId))]
|
||||
public List<iot_devicedata>? DeviceData { get; set; }
|
||||
/////// <summary>导航属性:关联数据归档(一对多)</summary>
|
||||
////[Navigate(NavigateType.OneToMany, nameof(DeviceId), nameof(iot_devicedata.DeviceId))]
|
||||
////public List<iot_devicedata>? DeviceData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 网关字段白名单。网关同步时,只有此集合中的字段会被覆盖,
|
||||
|
||||
Reference in New Issue
Block a user