InventoryAccountMissionService.php 308 B

1234567891011121314
  1. <?php
  2. namespace App\Services;
  3. use App\Services\common\BatchUpdateService;
  4. Class InventoryAccountMissionService
  5. {
  6. public function batchUpdateItself($column, array $params)
  7. {
  8. return app(BatchUpdateService::class)->batchUpdateItself('inventory_account_missions', $column, $params);
  9. }
  10. }