20 lines
445 B
C#
20 lines
445 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 扫码触发
|
|
/// </summary>
|
|
/// <param name="code"></param>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
Task ExecAsync(string code, int id);
|
|
}
|
|
}
|