Files

28 lines
849 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Queries
{
/// <summary>
/// 获取Agv实时信息查询输入参数
/// </summary>
public class AgvRealInfoQuery
{
/// <summary>
/// 区域Id集成控制系統提供该字段主要用来区分不同的仓库或区域。默认为1
/// </summary>
public string areaId { get; set; } = "1";
/// <summary>
/// 设备类型 固定值0
/// </summary>
public int deviceType { get; set; } = 0;
/// <summary>
/// 设备编号:可用作模糊搜索。多个设备编号英文逗号分隔,不穿插所有
/// </summary>
public string deviceCode { get; set; }
}
}