using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request.hj
{
public class CreateMoveWcsTaskRequest
{
///
/// 容器条码
///
public string ContGrpBarCode { get; set; }
///
/// 仓库编码
///
public string WarehouseCode { get; set; }
public decimal Qty { get; set; }
///
/// 目标点位
///
public string EndCellNo { get; set; }
public string Tunnel { get; set; }
public string FromCellNo { get; set; }
public string BusType { get; set; }
}
}