dbmsv4 init...3

This commit is contained in:
최준흠 2025-12-22 10:06:51 +09:00
parent 76faa50df8
commit d00fed0074
4 changed files with 2 additions and 5 deletions

View File

@ -195,7 +195,7 @@ class Services extends BaseService
);
}
//Part
public static function part_chassisservice($getShared = true): CHASSISService
public static function equipment_chassisservice($getShared = true): CHASSISService
{
if ($getShared) {
return static::getSharedInstance(__FUNCTION__);

View File

@ -2,7 +2,6 @@
namespace App\Controllers\Admin\Equipment;
use App\Entities\Equipment\ServerEntity;
use CodeIgniter\HTTP\RedirectResponse;
use CodeIgniter\HTTP\RequestInterface;
use CodeIgniter\HTTP\ResponseInterface;

View File

@ -776,4 +776,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2025-12-22 9:18:33
-- Dump completed on 2025-12-22 9:43:36

View File

@ -2,12 +2,10 @@
namespace App\Services\Equipment;
use RuntimeException;
use App\Models\Equipment\LineModel;
use App\Helpers\Equipment\LineHelper;
use App\Forms\Equipment\LineForm;
use App\Entities\Equipment\LineEntity;
use App\Entities\CommonEntity;
use App\DTOs\Equipment\LineDTO;
class LineService extends EquipmentService