22 lines
401 B
C#
22 lines
401 B
C#
|
|
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; }
|
|||
|
|
}
|