25 lines
589 B
C#
25 lines
589 B
C#
using Cowain.Bake.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Unity;
|
|
using static Cowain.Bake.Common.Models.MESModel;
|
|
|
|
namespace Cowain.Bake.Common.Interface
|
|
{
|
|
public interface ICommonFun
|
|
{
|
|
void ModifyOrderNum();
|
|
bool ManualTaskCmd(TTaskRecord task, short cmd);
|
|
|
|
void InitWindows();
|
|
|
|
void SetBatteryCodeLen();
|
|
string ManualMesOutUnBinding(TPalletInfo palletInfo, TBatteryInfo battery);
|
|
|
|
MESReturnCmdModel SendData(string info); //发送
|
|
}
|
|
}
|