22 lines
401 B
C#
Raw Normal View History

2024-11-26 13:45:28 +08:00
using System;
using System.Collections.Generic;
namespace YunDa.SOMS.Commdb.Models;
public partial class Iec103Tool
{
public int Id { get; set; }
public string? ListenIp { get; set; }
public int? ListenPort { get; set; }
public int? MaxLink { get; set; }
public int? MonitorL { get; set; }
public int? MonitorM { get; set; }
public int? LinkAddr { get; set; }
}