|
|
@ -56,7 +56,27 @@ public class DeliverRequestFisAppService : |
|
|
|
_balanceAppService = balanceAppService; |
|
|
|
_itemBasicAppService = itemBasicAppService; |
|
|
|
} |
|
|
|
/// <summary>
|
|
|
|
/// 删除
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="id"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpPost("delete-by-id")] |
|
|
|
public new async Task<bool> DeleteByIdAsync(Guid id) |
|
|
|
{ |
|
|
|
bool result; |
|
|
|
try |
|
|
|
{ |
|
|
|
await base.DeleteAsync(id).ConfigureAwait(false); |
|
|
|
result = true; |
|
|
|
} |
|
|
|
catch (Exception) |
|
|
|
{ |
|
|
|
|
|
|
|
result = false; |
|
|
|
} |
|
|
|
return result; |
|
|
|
} |
|
|
|
#region 东阳
|
|
|
|
|
|
|
|
private async Task SetRequestAutoPropertiesAsync(DeliverRequest entity) |
|
|
|