using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Seyounth.Auto.Hs.Runtime.Scanner
{
public interface IScannerEventHandle
{
///
/// 扫码触发
///
///
///
///
Task ExecAsync(string code, int id);
}
}