using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HxBusiness { public class RequestModel { /// /// 设备编号,必须,长度20 /// public string equipmentCode { get; set; } /// /// 请求编号 ,长度20 /// public string requestCode { get; set; } /// /// 请求时间,格式yyyyMMddHHmmssSSS /// public string arriveTime { get; set; } /// /// 优先级,越大优先级越高 /// public int taskPriority { get; set; } /// /// 最晚完成时间,格式yyyyMMddHHmmssSSS /// public string taskDeadLine { get; set; } /// /// 是否排除,True.要排队,False.不排队,默认False /// public bool allowedQueueUp { get; set; } /// /// 交汇点编号 /// public string interchangePointCode { get; set; } } public class RequestLeavedModel { /// /// 适配器编号 /// public string adapterCode { get; set; } /// /// 设备编号,必须,长度20 /// public string equipmentCode { get; set; } /// /// 请求编号 ,长度20 /// public string requestCode { get; set; } /// /// 离开时间,格式yyyyMMddHHmmssSSS /// public string leaveTime { get; set; } } public class SendModel { /// /// 设备编号,必须,长度20 /// public string equipmentCode { get; set; } /// /// 请求编号 ,长度20 /// public string requestCode { get; set; } /// /// 离开时间,格式yyyyMMddHHmmssSSS /// public string issueTime { get; set; } /// /// 授权结果 /// public int permissionResult { get; set; } /// /// 交汇区编号 /// public string interchangeRegionCode { get; set; } /// /// 交汇点编号 /// public string interchangePointCode { get; set; } } }