You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
697 B
C#
31 lines
697 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.FinishBatch
|
|
{
|
|
public class GHFinshBatchHelper
|
|
{
|
|
#region 冠合项目存盘数据
|
|
/// <summary>
|
|
/// 冠合项目数据存盘
|
|
/// </summary>
|
|
public static void SaveData()
|
|
{
|
|
try
|
|
{
|
|
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ICSharpCode.Core.LoggingService<GHFinshBatchHelper>.Error(String.Format("数据存盘异常:{1}", ex.Message), ex);
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|