using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Dto.Queries { /// /// 获取Agv实时信息,查询输入参数 /// public class AgvRealInfoQuery { /// /// 区域Id:集成控制系統提供,该字段主要用来区分不同的仓库或区域。默认为1 /// public string areaId { get; set; } = "1"; /// /// 设备类型 固定值:0 /// public int deviceType { get; set; } = 0; /// /// 设备编号:可用作模糊搜索。多个设备编号英文逗号分隔,不穿插所有 /// public string deviceCode { get; set; } } }