修改水電表背景程式

This commit is contained in:
張家睿 2024-01-31 14:09:47 +08:00
parent 2569888ccc
commit 904bdfc3e7
2 changed files with 655 additions and 588 deletions

View File

@ -81,6 +81,16 @@ namespace Backend.Models
public string device_model_tag { get; set; }
public List<DeviceDisaster> Device_disasters { get; set; } //防災類型
public List<DeviceNode> Device_nodes { get; set; } //設備子節點
/// <summary>
/// 前次成功日期;下次重新歸檔日期
/// </summary>
public System.DateTime archive_lastDate { get; set; }
/// <summary>
/// 前次執行日期
/// </summary>
public System.DateTime archive_lastActionDate { get; set; }
}
public class DeviceDisaster
@ -266,6 +276,7 @@ namespace Backend.Models
public string DeviceNumber { get; set; }
public string Point { get; set; }
public string FullDeviceNumberPoint { get; set; }
public System.DateTime archive_lastDate { get; set; }
}
public class ImportDevForCoo