29 lines
636 B
C#
29 lines
636 B
C#
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)
|
||
{
|
||
|
||
}
|
||
|
||
|
||
|
||
|
||
} |