65 lines
1.5 KiB
C#
65 lines
1.5 KiB
C#
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// 生成工艺播放数据(所有)
|
|
/// </summary>
|
|
/// <param name="frameValue">帧值</param>
|
|
void OutputCraftDataF(int frameValue)
|
|
;
|
|
|
|
/// <summary>
|
|
/// 生成工艺播放数据(工艺)
|
|
/// </summary>
|
|
/// <param name="currCraftCode">工艺代码</param>
|
|
/// <param name="frameValue">帧值</param>
|
|
void OutputCraftDataF(string currCraftCode, int frameValue)
|
|
;
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 生成工艺播放数据 的方法
|
|
/// </summary>
|
|
/// <param name="currCraftCode"></param>
|
|
void OutputCraftData(string currCraftCode, int frameValue)
|
|
;
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 生成工艺播放数据 的方法
|
|
/// </summary>
|
|
/// <param name="currCraftCode"></param>
|
|
/// <param name="_dt"></param>
|
|
void OutputCraftData(string currCraftCode, DataTable _dt, int frameValue)
|
|
;
|
|
|
|
|
|
|
|
}
|
|
}
|