using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_DTO
{
///
/// 分容柜输出Dto
///
public class OutPutDto
{
///
/// 货位号
///
public string LocationCode { get;set; }
///
/// 托盘号
///
public string PalletCode { get; set; }
///
/// 货位状态
///
public int LocationStatus { get; set; }
///
/// 是否正常流程
///
public int IsNormalProcedure { get; set; }
///
/// 通道号
///
public string Channel { get;set; }
///
/// 电芯条码
///
public string CellCode { get; set; }
}
}