补充初始化

This commit is contained in:
2025-11-25 17:30:36 +08:00
parent b4d684a84c
commit 4c686e6b57
6 changed files with 107 additions and 56 deletions

View File

@@ -36,6 +36,8 @@ namespace BLWLogProduce.Models
public static string UDPPackage_TianMaoQueryAll = "UDPPackage_TianMaoQueryAll";
public static string UDPPackage_TianMaoCONTROL = "UDPPackage_TianMaoCONTROL";
public static string TotalErrorPackageReceiveCount = "TotalErrorPackageReceiveCount";
}
public class grafana_data
{
@@ -57,5 +59,13 @@ namespace BLWLogProduce.Models
public string? XD_Ctr_D { get; set; } = "0";
public string? XD_Ctr_C { get; set; } = "0";
public string? Hivi_Ctr { get; set; } = "0";
public int? Process_Error { get; set; } = 0;
public int? Process_TH1 { get; set; } = 0;
public int? Process_TH2 { get; set; } = 0;
public int? Process_TH3 { get; set; } = 0;
public int? Process_TH4 { get; set; } = 0;
public int? Process_TH5 { get; set; } = 0;
public string? TotalErrorPackageReceiveCount { get; set; } = "0" ;
}
}