AI识别接收

This commit is contained in:
2025-08-09 12:27:29 +08:00
parent a52ecd996d
commit afa4976828
12 changed files with 741 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.APIItem
{
public class AIAlarmEventItem
{
public string device_id { get; set; }
public string device_version { get; set; }
public DateTime? date { get; set; }
public string timestamp { get; set; }
public string label { get; set; }
public string alias { get; set; }
public int? count { get; set; }
public object extend { get; set; }
public string img_base64 { get; set; }
}
}