22 lines
526 B
C#
22 lines
526 B
C#
using Cowain.Preheat.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Unity;
|
|
using static Cowain.Preheat.Common.Models.MESModel;
|
|
|
|
namespace Cowain.Preheat.Common.Interface
|
|
{
|
|
public interface ICommonFun
|
|
{
|
|
void ModifyOrderNum(string JobNum, string Operation);
|
|
|
|
float GetControlTemp(int layer);
|
|
string MesOutUnBinding(TBatteryInfo batteryInfo);
|
|
|
|
//MESReturnCmdModel SendData(string info); //发送
|
|
}
|
|
}
|