using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.WMS { public class WMSUpOrDownContainerDTO { /// /// 货位编号 /// public string locationCode { get; set; } /// /// 料箱条码 /// public string containerCode { get; set; } /// /// 流向 /// 1上架2下架 /// public int direction { get; set; } } }