using System; using System.Collections.Generic; using System.Text; namespace WCS.Model.ApiModel.AGV { //AGV同步地图数据 //如果好用,请收藏地址,帮忙分享。 public class AGVSyncMapDatasResponseDataItem { public string cooX { get; set; } /// /// /// public string cooY { get; set; } /// /// /// public string dataTyp { get; set; } public string direction { get; set; } public string mapCode { get; set; } /// /// /// public string mapDataCode { get; set; } /// /// /// public string podCode { get; set; } /// /// /// public string positionCode { get; set; } } public class AGVSyncMapDatasResponse { /// /// /// public string code { get; set; } /// /// /// public List data { get; set; } /// /// /// public string interrupt { get; set; } /// /// 成功 /// public string message { get; set; } /// /// /// public string msgErrCode { get; set; } /// /// /// public string reqCode { get; set; } } }