30 lines
528 B
C#
30 lines
528 B
C#
using ConLink.Enthernet;
|
|
using ConLink;
|
|
using System;
|
|
using System.Net;
|
|
using ConLink.Core.Net;
|
|
using System.Data;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DTTest
|
|
{
|
|
public partial class E { }
|
|
public partial interface IModelManagement
|
|
{
|
|
|
|
/// <summary>
|
|
/// 连接客户端
|
|
/// </summary>
|
|
/// <param name="ipPortName"></param>
|
|
NetComplexClient ClientConnection(string ipPortName)
|
|
;
|
|
|
|
|
|
void SendMsg(string msg)
|
|
;
|
|
|
|
|
|
}
|
|
}
|