You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AUCMA_SCADA/Aucma.Core.Tasks/AucamTaskService.cs

21 lines
444 B
C#

1 year ago
using log4net;
namespace Aucma.Core.Tasks
{
/// <summary>
/// 扫码枪初始化
/// </summary>
public class AucamTaskService : IAucamTaskService
{
private static readonly log4net.ILog log = LogManager.GetLogger(typeof(AucamTaskService));
public void ScannerGunAsync()
{
}
public void AucamTaskAsync()
{
throw new NotImplementedException();
}
}
}