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_checkHeartBeat : response_base { public response_checkHeartBeat() { action = "checkHeartBeat"; msg = "请求成功!"; } public response_status data { get; set; } } public class response_status { // status 状态定义 // 200 扫描仪就绪 // 201 正在扫描 // 501 扫描仪未连接 // 502 未检测到纸张 // 509 其他未正常的状态 public int status { get; set; } /// /// 本机唯一uuid /// public string uniqueClient { get; set; } /// /// 考试id /// public string examPaperId { get; set; } } }