Files
01-Siyuan-MesProject/DataMirrorTools_Simulator/ModelBasic/IBase/IMM.SignalDrive.cs
2026-05-29 10:07:05 +08:00

32 lines
657 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//using LogicComputer;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DTTest
{
public partial class E { }
public partial interface IModelManagement
{
void SetTagName(DataSet ds_Init)
;
/// <summary>
/// PLC 信号 触发3D模型运动内部使用
/// </summary>
/// <param name="tagNamePlc"></param>
/// <param name="inputValue"></param>
void PlcVarName_Trig_3DModel_Movement_Internal(string tagNamePlc, bool inputValue)
;
}
}