wcs_server_kate_suzhou/Tools/PlcTool/Siemens/Entity/PlcDBName.cs

13 lines
241 B
C#
Raw Permalink Normal View History

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
}