23 lines
517 B
C#
23 lines
517 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Seyounth.Auto.Hs.Runtime.Balances
|
|
{
|
|
/// <summary>
|
|
/// 电子秤称重事件
|
|
/// </summary>
|
|
public interface IBalanceEventHandle
|
|
{
|
|
/// <summary>
|
|
/// 称重触发
|
|
/// </summary>
|
|
/// <param name="weight"></param>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
Task ExecAsync(decimal weight,int id);
|
|
}
|
|
}
|