| | |
| | | /// </remarks> |
| | | /// <response code="200">扫描成功</response> |
| | | /// <response code="400">扫描失败,返回具体错误信息</response> |
| | | [HttpPost("SctlScanBarcode")] |
| | | public ResponseResult SctlScanBarcode([FromBody] WarehouseQuery query) |
| | | [HttpPost("ScblScanBarcode")] |
| | | public ResponseResult ScblScanBarcode([FromBody] WarehouseQuery query) |
| | | { |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | var (success, pendingList) = _manager.SctlScanBarcode(query); |
| | | var (success, pendingList) = _manager.ScblScanBarcode(query); |
| | | resultInfos.success = success; |
| | | resultInfos.pendingList = pendingList; |
| | | return new ResponseResult |