using Mesnac.Action.ChemicalWeighing.Entity.Report;
using Mesnac.Equips;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Mesnac.Action.ChemicalWeighing.FinishBatch
{
///
/// 存盘业务辅助类
///
public class FinishBatchHelper
{
#region 冠合事件定义
public static object sender = null;
public static event EventHandler GHOnUpdatePlanStateFromPlc;
#endregion
#region 小料称量数据存盘
///
/// 小料称量数据存盘
///
public static void SaveData()
{
try
{
}
catch (Exception ex)
{
ICSharpCode.Core.LoggingService.Error(String.Format("数据存盘异常:{1}", ex.Message), ex);
}
}
#endregion
#region 冠合存盘数据保存
///
/// 冠合存盘数据保存
///
public static void SaveGHData()
{
try
{
#region 存盘信号读取
#endregion
}
catch (Exception ex)
{
ICSharpCode.Core.LoggingService.Error(String.Format("生产数据存盘异常:{1}", ex.Message), ex);
}
}
#endregion
}
}