Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
meanspec-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MeanSpec (SCE338 2024-2 Group 1)
meanspec-backend
Merge requests
!10
Parts 추가
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Parts 추가
feat/parts
into
main
Overview
0
Commits
9
Pipelines
1
Changes
4
Merged
Lee WooChang
requested to merge
feat/parts
into
main
7 months ago
Overview
0
Commits
9
Pipelines
1
Changes
4
/parts api 추가
필터 반환 시 실제 유저가 사용 중인 데이터만을 반환
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
0888fe4b
9 commits,
7 months ago
4 files
+
229
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
src/constants/columnMapping.js
0 → 100644
+
58
−
0
View file @ 0888fe4b
Edit in single-file editor
Open in Web IDE
export
const
columnMapping
=
{
cpu
:
{
family_type
:
'
CPU 종류
'
,
socket_type
:
'
소켓 구분
'
,
core_count
:
'
코어 수
'
,
thread_count
:
'
스레드 수
'
,
base_clock
:
'
기본 클럭
'
,
max_clock
:
'
최대 클럭
'
,
mem_type
:
'
메모리 규격
'
,
tdp
:
'
TDP
'
,
},
gpu
:
{
chipset_manufacturer
:
'
칩셋 제조사
'
,
family_type
:
'
제품 시리즈
'
,
chipset
:
'
칩셋
'
,
vram_type
:
'
메모리 종류
'
,
vram_size
:
'
메모리 용량
'
,
interface
:
'
인터페이스
'
,
max_monitor_count
:
'
모니터 지원
'
,
power_consumption
:
'
사용 전력
'
,
},
ram
:
{
usage_type
:
'
사용 장치
'
,
form_factor
:
'
메모리 규격
'
,
size
:
'
메모리 용량
'
,
generation
:
'
제품 분류
'
,
base_clock
:
'
동작 클럭(대역폭)
'
,
package_count
:
'
램 개수
'
,
},
mb
:
{
board_type
:
'
제품 분류
'
,
cpu_socket
:
'
CPU 소켓
'
,
cpu_chipset
:
'
세부 칩셋
'
,
power_phase
:
'
전원부
'
,
ram_type
:
'
메모리 종류
'
,
ram_speed
:
'
메모리 속도
'
,
ram_slot_count
:
'
메모리 슬롯 수
'
,
form_factor
:
'
폼팩터
'
,
},
ssd
:
{
interface
:
'
인터페이스
'
,
size
:
'
용량
'
,
form_factor
:
'
폼팩터
'
,
nand_type
:
'
메모리 타입
'
,
dram_type_size
:
'
DRAM (유형과 용량)
'
,
protocol
:
'
프로토콜
'
,
},
hdd
:
{
usage_type
:
'
제품 분류
'
,
disk_standard_size
:
'
디스크 크기
'
,
disk_size
:
'
디스크 용량
'
,
interface
:
'
인터페이스
'
,
buffer_size
:
'
버퍼 용량
'
,
rpm
:
'
회전 수
'
,
max_speed
:
'
전송 속도
'
,
access_method
:
'
기록방식
'
,
},
};
Loading