This commit is contained in:
2024-06-27 16:44:05 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -10,6 +10,6 @@ namespace Tnb.WarehouseMgr.Interfaces
public interface IWmsCarryUnbindService public interface IWmsCarryUnbindService
{ {
Task<Result> CarryUnbind(CarryBindInput input); Task<Result> CarryUnbind(CarryBindInput input);
Task<dynamic> CarryCodeUnbind(CarryCodeUnbindInput input); Task<Result> CarryCodeUnbind(CarryCodeUnbindInput input);
} }
} }

View File

@@ -196,7 +196,7 @@ namespace Tnb.WarehouseMgr
/// <exception cref="ArgumentNullException"></exception> /// <exception cref="ArgumentNullException"></exception>
/// <exception cref="AppFriendlyException"></exception> /// <exception cref="AppFriendlyException"></exception>
[NonAction] [NonAction]
public async Task<dynamic> CarryCodeUnbind(CarryCodeUnbindInput input) public async Task<Result> CarryCodeUnbind(CarryCodeUnbindInput input)
{ {
bool isOk = false; bool isOk = false;
try try