using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request
{
public class GetTunnelPriorityListRequest
{
///
/// 任务号
///
public int TaskNum { get; set; }
///
/// 楼层
///
public int Floor { get; set; }
///
/// 备用
///
public string Memo1 { get; set; }
///
/// 备用
///
public string Memo2 { get; set; }
}
public class GetSxTunnelPriorityListRequest
{
///
/// 条码
///
public string Code { get; set; }
///
/// 楼层
///
public int Floor { get; set; }
///
/// 备用
///
public string? Memo1 { get; set; }
///
/// 备用
///
public string? Memo2 { get; set; }
}
}