using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; namespace HXX.Scanner.Biz.Socket { /// /// 返回 停止扫描 /// public class response_stopScan : response_base { public response_stopScan() { action = "stopScan"; msg = "停止扫描成功"; } /// /// 业务参数 /// public response_stopScanSub param { get; set; } } /// /// 业务参数 /// public class response_stopScanSub { /// /// 考试id /// public string examId { get; set; } /// /// 科目id /// public string examPaperId { get; set; } /// /// 已扫描张数 /// public int scanCount { get; set; } } }