using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace DTTest
{
public interface IModelManagement3
{
///
/// 为了数字孪生初始化加载数据(单个链接)
///
///
///
///
///
///
///
void Load_PlcVarName_Trig_3DModel_Movement_Interface(
string ipPortOpName_1, string prefix0, string objectHeader0, int sendInterval0,
string connectionString, string projectName)
;
///
/// 为了数字孪生初始化加载数据(两个链接)
///
///
///
///
///
///
///
///
void Load_PlcVarName_Trig_3DModel_Movement_Interface(
string ipPortOpName_1, string ipPortOpName_2, string prefix0, string objectHeader0, int sendInterval0,
string connectionString, string projectName)
;
///
/// PLC 信号 触发3D模型运动
///
///
///
void PlcVarName_Trig_3DModel_Movement(string tagNamePlc, bool inputValue)
;
///
/// 模型可见控制
///
///
///
void ModelVisible(string modelName, bool visible)
;
}
}