using Newtonsoft.Json; using OfficeOpenXml.FormulaParsing.Excel.Functions.Text; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO { /// /// 海康小车信息 /// public class HIKROBOTQuery { /// /// 小车编号 /// public string singleRobotCode { get; set; } } public class HIKROBOTQueryData { /// /// 通过返回的"mapCode"来区分楼层 AA是1楼,BB是2楼,CC是3楼,DD是4楼,EE是5楼,FF是6楼 /// public string mapCode { get; set; } /// /// 小车编号 /// public string singleRobotCode { get; set; } } }