using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.External
{
///
/// 接收入库信息
///
public class InWorkEntity
{
///
/// 托盘码
///
public string trayCode { get; set; }
///
/// 起点
///
public string startBit { get; set; }
///
/// 终点库区
///
public string endArea { get; set; }
///
/// 终点
///
public string endBit { get; set; }
///
/// 优先级
///
public int priority { get; set; }
///
/// 档位
///
public string locationGear { get; set; }
}
}