32 lines
657 B
C#
32 lines
657 B
C#
//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)
|
||
;
|
||
|
||
|
||
}
|
||
|
||
}
|