using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Outputs
{
///
/// Agv 实时信息输出类
///
public class AgvRealInfoOutput
{
///
/// 设备序号
///
public string deviceCode { get; set; }
///
/// 设备所在二维码的x,y坐标,前边的值是x,后边的是y
///
public double[] devicePostionRec { get; set; }
///
/// 设备当前位置
///
public string devicePosition { get; set; }
///
/// 方向,0.001度
///
public int oritation { get; set; }
///
/// 速度
///
public int speed { get; set; }
///
/// 当前搬运的货架编号,对应载具编号
///
public string shelfNumber { get; set; }
}
}