using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace wms.dto.request.hj
{
///
/// 补空轮申请请求实体
///
public class ApplyEmptySpoolRequest:BaseRequest
{
///
/// 巷道
///
public int Tunnel { get; set; }
///
/// 出库位置
///
public string OutEndPostion { get; set; }
}
}