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; }
}
}
+1
View File
@@ -71,6 +71,7 @@
<Compile Include="APIItem\BaseProjectItem.cs" />
<Compile Include="APIItem\ChemicalReport.cs" />
<Compile Include="APIItem\ChemicalReportItem.cs" />
<Compile Include="APIItem\AIAlarmEventItem.cs" />
<Compile Include="APIItem\CNCEC\ActionWorkLedger.cs" />
<Compile Include="APIItem\CNCEC\ActionWorkLedgerItem.cs" />
<Compile Include="APIItem\CNCEC\CheckRectifyItem.cs" />