2025-05-22 13:06:49 +08:00
|
|
|
|
using SocketTool.Entity;
|
|
|
|
|
|
|
|
|
|
|
|
namespace WcsMain.Business.CommonAction;
|
|
|
|
|
|
/*
|
|
|
|
|
|
* 扫码器方法类:
|
|
|
|
|
|
* 使用方法:系统自动调用,需要在 config 表内配置参数
|
|
|
|
|
|
* 配置的参数名称为:ScanMethod{ScanID},ScanID 为 string 格式,参数对应的值为方法名称,
|
|
|
|
|
|
* 方法必须为 public 格式,参数为 ScanCodeClass
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 扫码器处理事件
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class ScanCodeAction
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 测试
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="codeEntity"></param>
|
|
|
|
|
|
public void PickScanTest(ScanCodeClass codeEntity)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-05-14 16:30:56 +08:00
|
|
|
|
}
|