You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace SlnMesnac.Model.AirportApiEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取当前地图所有位置点请求实体类(get方法)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Obsolete]
|
|
|
|
|
public class AGVRequestMapPositionEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 地图ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string mapId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 当前地图所有位置点响应数据实体类
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ResponseMapPositionDataEntity
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 点位名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 所属地图ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string mapId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 位置点类型 0:普通 1:⾼精度 2:充电桩 3:闲置点
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int type { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 点位ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string guid { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|