response_scannedBatch.cs 446 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.IO;
  7. namespace HXX.Scanner.Biz.Socket
  8. {
  9. /// <summary>
  10. /// scannedBatch,因为是主动命令,返回值实际未接收
  11. /// </summary>
  12. public class response_scannedBatch : response_base
  13. {
  14. public response_scannedBatch()
  15. {
  16. action = "scannedBatch";
  17. }
  18. }
  19. }