added inverterSN and dataloggerSN for sodistorehome in backend

This commit is contained in:
Yinyin Liu 2025-10-14 16:11:31 +02:00
parent 3795287124
commit 692a278f04
2 changed files with 4 additions and 1 deletions

View File

@ -43,6 +43,8 @@ public class Installation : TreeNode
public int Product { get; set; } = (int)ProductType.Salimax; public int Product { get; set; } = (int)ProductType.Salimax;
public int Device { get; set; } = 0; public int Device { get; set; } = 0;
public string SerialNumber { get; set; } = ""; public string SerialNumber { get; set; } = "";
public string InverterSN { get; set; } = "";
public string DataloggerSN { get; set; } = "";
[Ignore] [Ignore]
public String OrderNumbers { get; set; } public String OrderNumbers { get; set; }

View File

@ -40,7 +40,8 @@ public class Installation
public int Product { get; set; } = 0; public int Product { get; set; } = 0;
public int Device { get; set; } = 0; public int Device { get; set; } = 0;
public string SerialNumber { get; set; } = ""; public string SerialNumber { get; set; } = "";
public string InverterSN { get; set; } = "";
public string DataloggerSN { get; set; } = "";
public String OrderNumbers { get; set; } public String OrderNumbers { get; set; }
public String VrmLink { get; set; } = ""; public String VrmLink { get; set; } = "";
} }