LASAPlatform/OpenAuth.App/ServiceApp/Request/DaHuaTaskInfo.cs

41 lines
1.0 KiB
C#
Raw Normal View History

2025-08-14 10:22:13 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Request
{
public class DaHuaTaskInfo
{
public string channelId { get; set; }
public string userChannelCode { get; set; }
public int analysisType { get; set; }
2025-08-15 14:26:42 +08:00
public string url { get; set; }//待分析的rtsp码流地址标准rtsp
2025-08-14 10:22:13 +08:00
public string memo { get; set; }
public string config { get; set; }
public string saasExtParam { get; set; }
public List<AnalysisRequest> algorithms { get; set; }
}
public class AnalysisRequest
{
public string name { get; set; }
public string edition { get; set; }
public string algorithmClass { get; set; }
public string rule { get; set; }
public string ruleType { get; set; }
}
}