|  |  |  | 
|---|
|  |  |  | { | 
|---|
|  |  |  | return await Service.RequestOutTaskToBZAsync(input); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /// <summary> | 
|---|
|  |  |  | /// 分容空框入库改为直接出库 | 
|---|
|  |  |  | /// </summary> | 
|---|
|  |  |  | /// <param name="input">请求数据</param> | 
|---|
|  |  |  | /// <returns></returns> | 
|---|
|  |  |  | [HttpPost, AllowAnonymous, Route("SetEmptyOutbyInToOutAsync")] | 
|---|
|  |  |  | public async Task<WebResponseContent> SetEmptyOutbyInToOutAsync([FromBody] RequestTaskDto input) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | return await Service.SetEmptyOutbyInToOutAsync(input); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /// <summary> | 
|---|
|  |  |  | /// 分容空框出库改为直接出库 | 
|---|
|  |  |  | /// </summary> | 
|---|
|  |  |  | /// <param name="input">请求数据</param> | 
|---|
|  |  |  | /// <returns></returns> | 
|---|
|  |  |  | [HttpPost, AllowAnonymous, Route("SetEmptyOutbyInToOutOneAsync")] | 
|---|
|  |  |  | public async Task<WebResponseContent> SetEmptyOutbyInToOutOneAsync([FromBody] RequestTaskDto input) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | return await Service.SetEmptyOutbyInToOutOneAsync(input); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|