using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace DTTest
{
/*
{ "OPERATION": {frames: [
{time:10, objStates:[{i:装配工位完成产品加托盘,tx:1.484,ty:-0.001,tz:3.183,rx:0.000000,ry:0.000000,rz:0.000000}, ] },
{time:10, objStates:[{i:装配工位完成产品加托盘,tx:1.484,ty:-0.001,tz:3.183,rx:0.000000,ry:0.000000,rz:0.000000}, ] },
]}}
*/
public partial class E { }
public partial interface IModelManagement
{
///
/// 生成工艺播放数据(所有)
///
/// 帧值
void OutputCraftDataF(int frameValue)
;
///
/// 生成工艺播放数据(工艺)
///
/// 工艺代码
/// 帧值
void OutputCraftDataF(string currCraftCode, int frameValue)
;
///
/// 生成工艺播放数据 的方法
///
///
void OutputCraftData(string currCraftCode, int frameValue)
;
///
/// 生成工艺播放数据 的方法
///
///
///
void OutputCraftData(string currCraftCode, DataTable _dt, int frameValue)
;
}
}