From 692a278f04d8880262eb97b4cf81e092b801fe54 Mon Sep 17 00:00:00 2001 From: Yinyin Liu Date: Tue, 14 Oct 2025 16:11:31 +0200 Subject: [PATCH] added inverterSN and dataloggerSN for sodistorehome in backend --- csharp/App/Backend/DataTypes/Installation.cs | 2 ++ csharp/DataCollectorWebApp/Controller.cs | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/csharp/App/Backend/DataTypes/Installation.cs b/csharp/App/Backend/DataTypes/Installation.cs index 6596d797a..9710d81b3 100644 --- a/csharp/App/Backend/DataTypes/Installation.cs +++ b/csharp/App/Backend/DataTypes/Installation.cs @@ -43,6 +43,8 @@ public class Installation : TreeNode public int Product { get; set; } = (int)ProductType.Salimax; public int Device { get; set; } = 0; public string SerialNumber { get; set; } = ""; + public string InverterSN { get; set; } = ""; + public string DataloggerSN { get; set; } = ""; [Ignore] public String OrderNumbers { get; set; } diff --git a/csharp/DataCollectorWebApp/Controller.cs b/csharp/DataCollectorWebApp/Controller.cs index e5b13d481..c58c739fe 100644 --- a/csharp/DataCollectorWebApp/Controller.cs +++ b/csharp/DataCollectorWebApp/Controller.cs @@ -40,7 +40,8 @@ public class Installation public int Product { get; set; } = 0; public int Device { get; set; } = 0; public string SerialNumber { get; set; } = ""; - + public string InverterSN { get; set; } = ""; + public string DataloggerSN { get; set; } = ""; public String OrderNumbers { get; set; } public String VrmLink { get; set; } = ""; }