Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feature] 차량 상세 정보 모달 조회 API 구현 #99

Open
2 tasks
Jeongjjuna opened this issue Jan 9, 2025 · 0 comments
Open
2 tasks

[feature] 차량 상세 정보 모달 조회 API 구현 #99

Jeongjjuna opened this issue Jan 9, 2025 · 0 comments
Assignees
Labels
✨ Feat 새로운 기능 추가 ✅ Test 테스트 코드 추가 또는 수정

Comments

@Jeongjjuna
Copy link
Collaborator

Jeongjjuna commented Jan 9, 2025

🔧 어떤 기능인가요?

차량 상세 정보 모달 조회 API 를 구현합니다.

요청
GET /api/v1/vehicles/{vehicleId}
응답
{
  "isSuccess": true,
  "message": "요청 성공",
  "result": {
	"vehicleId": "V123",
	"vehicleNumber": "54하7056",
	"driverName": "홍길동",
	"status": {
	    "type": "ON" | "OFF",
	    "speed": 60,
	    "lastEngineOn": "2024-12-24T08:30:00Z",
	    "lastEngineOff": "2024-12-23T18:30:00Z"
	},
	"dailyStatus": {
	    "distance": 152.4,
	    "drivingTime": 18000
	},
	"location": {
	    "lat": 37.4319,
	    "lng": 126.7800,
	    "lastUpdated": "2024-12-24T10:30:00Z"
	}
  }
}

✏️ 작업 상세 내용

  • 상세 정보 모달 조회 API 구현
  • 단위테스트 & 통합테스트 작성
@Jeongjjuna Jeongjjuna added ✨ Feat 새로운 기능 추가 ✅ Test 테스트 코드 추가 또는 수정 labels Jan 9, 2025
@Jeongjjuna Jeongjjuna self-assigned this Jan 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ Feat 새로운 기능 추가 ✅ Test 테스트 코드 추가 또는 수정
Projects
None yet
Development

When branches are created from issues, their pull requests are automatically linked.

1 participant