| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.IO;
- namespace HXX.Scanner.Biz.Socket
- {
- /// <summary>
- /// scannedBatch,因为是主动命令,返回值实际未接收
- /// </summary>
- public class response_scannedBatch : response_base
- {
- public response_scannedBatch()
- {
- action = "scannedBatch";
- }
- }
- }
|