2025-05-22 13:06:49 +08:00
|
|
|
|
namespace PlcTool.Siemens.Entity;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// DB 信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class PlcDBName
|
|
|
|
|
|
{
|
|
|
|
|
|
public uint? PlcId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? DBName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? DBAddress { get; set; }
|
2024-05-14 16:30:56 +08:00
|
|
|
|
}
|