feat: 급여 관리 API 및 더미 시더 확장

- 급여 관리 API 추가 (SalaryController, SalaryService, Salary 모델)
  - 급여 목록/상세/등록/수정/삭제
  - 상태 변경 (scheduled/completed)
  - 일괄 상태 변경
  - 통계 조회
- 더미 시더 확장
  - 근태, 휴가, 부서, 사용자 시더 추가
  - 기존 시더 tenant_id/created_by/updated_by 필드 추가
- 부서 서비스 개선 (tree 조회 기능 추가)
- 카드 서비스 수정

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-25 03:48:32 +09:00
parent 0508282e58
commit 638e87b05d
35 changed files with 2057 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
# 논리적 데이터베이스 관계 문서
> **자동 생성**: 2025-12-24 19:31:13
> **자동 생성**: 2025-12-25 00:41:11
> **소스**: Eloquent 모델 관계 분석
## 📊 모델별 관계 현황
@@ -553,6 +553,12 @@ ### leave_balances
- **user()**: belongsTo → `users`
### leave_grants
**모델**: `App\Models\Tenants\LeaveGrant`
- **user()**: belongsTo → `users`
- **creator()**: belongsTo → `users`
### loans
**모델**: `App\Models\Tenants\Loan`