feat(DaHuaApi): 扩展通道信息模型字段
- 新增通道序号(channelSn)属性 - 新增光栅图ID(mapId)属性 - 新增域ID(domainId)属性 - 新增描述(memo)属性 - 修改扩展信息(chExt)为字符串类型并更新注释 - 修改是否已接入(access)为整型并更新注释 - 修改是否虚拟(isVirtual)为字符串类型并更新注释DataMaintenance
parent
d7f515b94c
commit
14bd10fd93
|
|
@ -463,6 +463,11 @@ namespace Infrastructure.Helpers
|
|||
/// </summary>
|
||||
public string channelCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 通道序号
|
||||
/// </summary>
|
||||
public string channelSn { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 通道名称
|
||||
/// </summary>
|
||||
|
|
@ -493,6 +498,21 @@ namespace Infrastructure.Helpers
|
|||
/// </summary>
|
||||
public string gpsY { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 光栅图ID
|
||||
/// </summary>
|
||||
public long mapId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 域ID
|
||||
/// </summary>
|
||||
public long domainId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 描述
|
||||
/// </summary>
|
||||
public string memo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否在线
|
||||
/// </summary>
|
||||
|
|
@ -509,19 +529,19 @@ namespace Infrastructure.Helpers
|
|||
public string capability { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 扩展信息
|
||||
/// 是否已接入
|
||||
/// </summary>
|
||||
public int access { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 通道详情扩展信息Json体
|
||||
/// </summary>
|
||||
public string chExt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否虚拟
|
||||
/// 是否是虚拟通道
|
||||
/// </summary>
|
||||
public int isVirtual { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public string createTime { get; set; }
|
||||
public string isVirtual { get; set; }
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
|
|
|||
Loading…
Reference in New Issue