using System; using System.Collections.Generic; using System.Text; namespace wms.dto.request.cp { public class MoveStockLocationFeedBackRequest { /// /// 仓库编码 /// public string WareCode { get; set; } /// /// 箱号 /// public string BoxNo { get; set; } /// /// 起点货位 /// public string StartLoc { get; set; } /// /// 目标货位 /// public string EndLoc { get; set; } } }