refactor: [hr] 사번 필드 제거, 비밀번호 제거, 퇴직일 추가

This commit is contained in:
김보곤
2026-02-26 19:27:15 +09:00
parent 72a5c096a2
commit 39061c244d
7 changed files with 48 additions and 91 deletions

View File

@@ -76,7 +76,6 @@ public function store(Request $request): JsonResponse
'name' => 'required|string|max:50',
'email' => 'nullable|email|max:100',
'phone' => 'nullable|string|max:20',
'password' => 'nullable|string|min:6',
'department_id' => 'nullable|integer|exists:departments,id',
'position_key' => 'nullable|string|max:50',
'job_title_key' => 'nullable|string|max:50',
@@ -85,8 +84,8 @@ public function store(Request $request): JsonResponse
'employee_status' => 'nullable|string|in:active,leave,resigned',
'manager_user_id' => 'nullable|integer|exists:users,id',
'display_name' => 'nullable|string|max:50',
'employee_code' => 'nullable|string|max:30',
'hire_date' => 'nullable|date',
'resign_date' => 'nullable|date',
'address' => 'nullable|string|max:200',
'emergency_contact' => 'nullable|string|max:100',
];
@@ -154,8 +153,8 @@ public function update(Request $request, int $id): JsonResponse
'employee_status' => 'nullable|string|in:active,leave,resigned',
'manager_user_id' => 'nullable|integer|exists:users,id',
'display_name' => 'nullable|string|max:50',
'employee_code' => 'nullable|string|max:30',
'hire_date' => 'nullable|date',
'resign_date' => 'nullable|date',
'address' => 'nullable|string|max:200',
'emergency_contact' => 'nullable|string|max:100',
]);