using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_DTO.Basic
{
///
/// 手动移库实体
///
public class RelocationDTO
{
///
/// 移库仓库Id
///
public int warehouseId { get; set; }
///
/// 移库起点
///
public string locationStart { get; set; }
///
/// 移库终点
///
public string locationEnd { get; set; }
///
/// 移库巷道号
///
public string locationRoadway { get; set; }
}
}