Product_Wms/WcsMain/Business/CommonAction/ScanCodeAction.cs

29 lines
608 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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)
{
}
}