10696 lines
315 KiB
TypeScript
10696 lines
315 KiB
TypeScript
import { HardwareAsset, SoftwareAsset, SWUser, HardwareLog } from './excelHandler';
|
|
|
|
// 유틸리티: 랜덤 문자열
|
|
const randomId = () => Math.random().toString(36).substring(2, 9);
|
|
|
|
// 유틸리티: 랜덤 년월 (YYYY-MM) (최근 10년)
|
|
const randomPurchaseYM = () => {
|
|
const currentYear = new Date().getFullYear();
|
|
const year = currentYear - Math.floor(Math.random() * 10);
|
|
const month = String(Math.floor(Math.random() * 12) + 1).padStart(2, '0');
|
|
return `${year}-${month}`;
|
|
};
|
|
|
|
// 유틸리티: 랜덤 YYYY-MM-DD
|
|
const randomDateStr = (maxYearsAgo = 10) => {
|
|
const currentYear = new Date().getFullYear();
|
|
const year = currentYear - Math.floor(Math.random() * maxYearsAgo);
|
|
const month = String(Math.floor(Math.random() * 12) + 1).padStart(2, '0');
|
|
const day = String(Math.floor(Math.random() * 28) + 1).padStart(2, '0');
|
|
return `${year}-${month}-${day}`;
|
|
};
|
|
|
|
const CORPS = ['한맥', '삼안', '장헌', '장헌산업', 'PTC', '바론', '한라'];
|
|
const getRandomCorp = () => CORPS[Math.floor(Math.random() * CORPS.length)];
|
|
|
|
// ────────────────────────────────────────────────────────
|
|
// 1. SampleData_PC.xlsx 에서 파싱된 PC 데이터 주입
|
|
// ────────────────────────────────────────────────────────
|
|
export const dummyPCs: any[] = [
|
|
{
|
|
"id": "lo92jtv",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24000",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김형준",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "과업수행그룹",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF B365M-PLUS GAMING",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF B365M-PLUS GAMING",
|
|
"ip_address": "192.168.0.10",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_0",
|
|
"memo": "1",
|
|
"asset_name": "개인PC 1",
|
|
"mac_address": "00:1A:2B:3C:4D:00",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "sdc4kxy",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24001",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "정계완",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "구조물S/W개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRO Z790-A WIFI(MS-7E07)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900K",
|
|
"gpu": "NVIDIA GeForce RTX 4080",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRO Z790-A WIFI(MS-7E07)",
|
|
"ip_address": "192.168.0.11",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_1",
|
|
"memo": "개인장비 사양 확인 방법",
|
|
"asset_name": "개인PC 2",
|
|
"mac_address": "00:1A:2B:3C:4D:01",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "c8l8fch",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24002",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "김세열",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "구조물S/W개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "Z790 Pro RS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 3070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "Z790 Pro RS",
|
|
"ip_address": "192.168.0.12",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_2",
|
|
"memo": "기술개발센터 재물조사.pptx",
|
|
"asset_name": "개인PC 3",
|
|
"mac_address": "00:1A:2B:3C:4D:02",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "z9i2582",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24003",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "김지웅",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "구조물S/W개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRO Z790-A WIFI(MS-7E07)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900K",
|
|
"gpu": "NVIDIA GeForce RTX 4080",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRO Z790-A WIFI(MS-7E07)",
|
|
"ip_address": "192.168.0.13",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_3",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 4",
|
|
"mac_address": "00:1A:2B:3C:4D:03",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "wwwm9ly",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24004",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "이인우",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "구조물S/W개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRO Z790-A WIFI (MS-7E07)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900K",
|
|
"gpu": "NVIDIA GeForce RTX 4080",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRO Z790-A WIFI (MS-7E07)",
|
|
"ip_address": "192.168.0.14",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_4",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 5",
|
|
"mac_address": "00:1A:2B:3C:4D:04",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "pi8hxvq",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24005",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "이연재",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "구조물S/W개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRO Z790-A WIFI (MS-7E07)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900K",
|
|
"gpu": "NVIDIA GeForce RTX 4080",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRO Z790-A WIFI (MS-7E07)",
|
|
"ip_address": "192.168.0.15",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_5",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 6",
|
|
"mac_address": "00:1A:2B:3C:4D:05",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "0dxefjo",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24006",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "이준호",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "구조물S/W개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRO Z790-A WIFI(MS-7E07)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900K",
|
|
"gpu": "NVIDIA GeForce RTX 4080",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRO Z790-A WIFI(MS-7E07)",
|
|
"ip_address": "192.168.0.16",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_6",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 7",
|
|
"mac_address": "00:1A:2B:3C:4D:06",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "phm0i1c",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24007",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김민성",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "64GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-A",
|
|
"ip_address": "192.168.0.17",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_7",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 8",
|
|
"mac_address": "00:1A:2B:3C:4D:07",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "45ls7qh",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24008",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "한성일",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_Abut&시공통합관제셀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME Z790-P",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 3070 Ti",
|
|
"ram": "64GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME Z790-P",
|
|
"ip_address": "192.168.0.18",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_8",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 9",
|
|
"mac_address": "00:1A:2B:3C:4D:08",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "b2ug6me",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24009",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "박승우",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_Abut&시공통합관제셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-D D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "64GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-D D4",
|
|
"ip_address": "192.168.0.19",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_9",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 10",
|
|
"mac_address": "00:1A:2B:3C:4D:09",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "6quvoto",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24010",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "이민규",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_Abut&시공통합관제셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "64GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.20",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_10",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 11",
|
|
"mac_address": "00:1A:2B:3C:4D:0A",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "3jx7ok4",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24011",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "최준영",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_EG-BIM Draw셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF GAMING B650M-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 7900X",
|
|
"gpu": "NVIDIA GeForce RTX 4070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF GAMING B650M-PLUS",
|
|
"ip_address": "192.168.0.21",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_11",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 12",
|
|
"mac_address": "00:1A:2B:3C:4D:0B",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "jk661zs",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24012",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "엄지숙",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_EG-BIM Draw셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRO B650M-A WIFI (MS-7D77)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 7900X",
|
|
"gpu": "NVIDIA GeForce RTX 4070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRO B650M-A WIFI (MS-7D77)",
|
|
"ip_address": "192.168.0.22",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_12",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 13",
|
|
"mac_address": "00:1A:2B:3C:4D:0C",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "zd0eh8f",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24013",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "강근아",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_EG-BIM Draw셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B460M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-10700",
|
|
"gpu": "NVIDIA GeForce RTX 2070",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "500GB",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B460M-A",
|
|
"ip_address": "192.168.0.23",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_13",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 14",
|
|
"mac_address": "00:1A:2B:3C:4D:0D",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "pm97n4p",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24014",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "서동해",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_EG-BIM Draw셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-K",
|
|
"ip_address": "192.168.0.24",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_14",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 15",
|
|
"mac_address": "00:1A:2B:3C:4D:0E",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "vgieje0",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24015",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "김근형",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_EG-BIM Draw셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF GAMING B650M-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 7900X",
|
|
"gpu": "NVIDIA GeForce RTX 4070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF GAMING B650M-PLUS",
|
|
"ip_address": "192.168.0.25",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_15",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 16",
|
|
"mac_address": "00:1A:2B:3C:4D:0F",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "25j47jn",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24016",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "백승민",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_HmEG셀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "MPG Z690 FORCE WIFI (MS-7D30)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-12900K",
|
|
"gpu": "NVIDIA GeForce RTX 3090 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "MPG Z690 FORCE WIFI (MS-7D30)",
|
|
"ip_address": "192.168.0.26",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_16",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 17",
|
|
"mac_address": "00:1A:2B:3C:4D:10",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "bygqxeh",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24017",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "최진영",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_HmEG셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "MAG B660M MORTAR WIFI DDR4 (MS-7D42)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4090",
|
|
"ram": "64GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "MAG B660M MORTAR WIFI DDR4 (MS-7D42)",
|
|
"ip_address": "192.168.0.27",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_17",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 18",
|
|
"mac_address": "00:1A:2B:3C:4D:11",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "mwplhx6",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "PC-24018",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "문영석",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_HmEG셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF B365M-PLUS GAMING",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce RTX 2070",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF B365M-PLUS GAMING",
|
|
"ip_address": "192.168.0.28",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_18",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 19",
|
|
"mac_address": "00:1A:2B:3C:4D:12",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "l1fe135",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24019",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "김명식",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_HmEG셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRO B650M-A WIFI (MS-7D77)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 7900X",
|
|
"gpu": "NVIDIA GeForce RTX 4070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRO B650M-A WIFI (MS-7D77)",
|
|
"ip_address": "192.168.0.29",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_19",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 20",
|
|
"mac_address": "00:1A:2B:3C:4D:13",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "vu2deiz",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24020",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "민경록",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_HmEG셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME Z790-P",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 3070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME Z790-P",
|
|
"ip_address": "192.168.0.30",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_20",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 21",
|
|
"mac_address": "00:1A:2B:3C:4D:14",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "89tt04z",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24021",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "정진우",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_HmEG셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.31",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_21",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 22",
|
|
"mac_address": "00:1A:2B:3C:4D:15",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "t7k8460",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24022",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "이재원",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_Modeler셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce RTX 3060 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-A",
|
|
"ip_address": "192.168.0.32",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_22",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 23",
|
|
"mac_address": "00:1A:2B:3C:4D:16",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "zjx1p78",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24023",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "홍길수",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_Modeler셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME Z390M-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce RTX 3070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME Z390M-PLUS",
|
|
"ip_address": "192.168.0.33",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_23",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 24",
|
|
"mac_address": "00:1A:2B:3C:4D:17",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "20li5yd",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24024",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "이지율",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_Modeler셀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 3070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-K",
|
|
"ip_address": "192.168.0.34",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_24",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 25",
|
|
"mac_address": "00:1A:2B:3C:4D:18",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "4cjiemw",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24025",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "이해랑",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "그래픽스 개발팀_Modeler셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B450M-K II",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 5600X",
|
|
"gpu": "NVIDIA GeForce RTX 3060 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "1TB",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B450M-K II",
|
|
"ip_address": "192.168.0.35",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_25",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 26",
|
|
"mac_address": "00:1A:2B:3C:4D:19",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "vy3apmj",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24026",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "박현수",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "상하수도팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-E D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.82TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-E D4",
|
|
"ip_address": "192.168.0.36",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_26",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 27",
|
|
"mac_address": "00:1A:2B:3C:4D:1A",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "0a8ek3m",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24027",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "최정우A",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "상하수도팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-E D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-E D4",
|
|
"ip_address": "192.168.0.37",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_27",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 28",
|
|
"mac_address": "00:1A:2B:3C:4D:1B",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "2vjv5ml",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24028",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "배상우",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "상하수도팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.82TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.38",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_28",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 29",
|
|
"mac_address": "00:1A:2B:3C:4D:1C",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "yrdeqqm",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24029",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "최지수",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "상하수도팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce GTX 1060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.39",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_29",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 30",
|
|
"mac_address": "00:1A:2B:3C:4D:1D",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "jdkur63",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24030",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "이은구",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "수자원팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-D D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "12th Gen Intel(R) Core(TM) (12 CPUs)",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-D D4",
|
|
"ip_address": "192.168.0.40",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_30",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 31",
|
|
"mac_address": "00:1A:2B:3C:4D:1E",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "j5ypqe4",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24031",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "지현욱",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "수자원팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B360M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce GTX 1070",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B360M-K",
|
|
"ip_address": "192.168.0.41",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_31",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 32",
|
|
"mac_address": "00:1A:2B:3C:4D:1F",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "fd2zxxh",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24032",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "김희철",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "수자원팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B350M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 7 1700X",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B350M-A",
|
|
"ip_address": "192.168.0.42",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_32",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 33",
|
|
"mac_address": "00:1A:2B:3C:4D:20",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "3ujrpx1",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24033",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "황호연",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "수자원팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ROG STRIX B550-A GAMING",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 7 5800X",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ROG STRIX B550-A GAMING",
|
|
"ip_address": "192.168.0.43",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_33",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 34",
|
|
"mac_address": "00:1A:2B:3C:4D:21",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "fmatclo",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24034",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "복진훈",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "스마트건설팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "Intel(R) UHD Graphics 630",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME H410M-A",
|
|
"ip_address": "192.168.0.44",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_34",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 35",
|
|
"mac_address": "00:1A:2B:3C:4D:22",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "dif919j",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24035",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "유석준",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "스마트건설팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME B350M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 7 1800X",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME B350M-A",
|
|
"ip_address": "192.168.0.45",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_35",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 36",
|
|
"mac_address": "00:1A:2B:3C:4D:23",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "sby9nbf",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24036",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "최정균",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "대산-당진 제2공구 파견",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 5060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.46",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_36",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 37",
|
|
"mac_address": "00:1A:2B:3C:4D:24",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "ylejbed",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24037",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김재림",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "스마트건설팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-9400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME B365M-K",
|
|
"ip_address": "192.168.0.47",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_37",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 38",
|
|
"mac_address": "00:1A:2B:3C:4D:25",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "jmh5f1p",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24038",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "이동원",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF GAMING Z490-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-10900",
|
|
"gpu": "NVIDIA GeForce RTX 3090",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "1TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF GAMING Z490-PLUS",
|
|
"ip_address": "192.168.0.48",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_38",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 39",
|
|
"mac_address": "00:1A:2B:3C:4D:26",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "sz4xq1j",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24039",
|
|
"purchase_date": "2013-01",
|
|
"user_current": "김일태",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_구조물계획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUSTeK B85M-G",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-4690",
|
|
"gpu": "NVIDIA GeForce GTX 1030",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "250GB",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUSTeK B85M-G",
|
|
"ip_address": "192.168.0.49",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_39",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 40",
|
|
"mac_address": "00:1A:2B:3C:4D:27",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "95thb4u",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24040",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "곽현석",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_구조물계획팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME A620M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 7500F",
|
|
"gpu": "AMD Radeon RX 580 2048SP",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME A620M-A",
|
|
"ip_address": "192.168.0.50",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_40",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 41",
|
|
"mac_address": "00:1A:2B:3C:4D:28",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "vamw3ku",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24041",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "윤현경",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_구조물계획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME A320M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 5600X",
|
|
"gpu": "NVIDIA GeForce GTX 1650",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "250GB",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME A320M-K",
|
|
"ip_address": "192.168.0.51",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_41",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 42",
|
|
"mac_address": "00:1A:2B:3C:4D:29",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "rcqv3r6",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24042",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "정미정",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_구조물계획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-A",
|
|
"ip_address": "192.168.0.52",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_42",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 43",
|
|
"mac_address": "00:1A:2B:3C:4D:2A",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "uxcl65l",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24043",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "최용혁",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_구조물계획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B550M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 5600G",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B550M-A",
|
|
"ip_address": "192.168.0.53",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_43",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 44",
|
|
"mac_address": "00:1A:2B:3C:4D:2B",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "f4yzhnn",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "PC-24044",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김상욱",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_일반구조물팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "EX-A320M-GAMING",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 5600X",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "EX-A320M-GAMING",
|
|
"ip_address": "192.168.0.54",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_44",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 45",
|
|
"mac_address": "00:1A:2B:3C:4D:2C",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "w24yau6",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24045",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김재환",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_일반구조물팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-9400F",
|
|
"gpu": "NVIDIA GeForce GTX 1070",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-A",
|
|
"ip_address": "192.168.0.55",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_45",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 46",
|
|
"mac_address": "00:1A:2B:3C:4D:2D",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "gxx9xj0",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24046",
|
|
"purchase_date": "2013-01",
|
|
"user_current": "양준열",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_일반구조물팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUSTeK B85M-G",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-4690",
|
|
"gpu": "NVIDIA GeForce GT 1030",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUSTeK B85M-G",
|
|
"ip_address": "192.168.0.56",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_46",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 47",
|
|
"mac_address": "00:1A:2B:3C:4D:2E",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "n608c90",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24047",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "김주영",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_일반구조물팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B660M-A D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-12900KF",
|
|
"gpu": "NVIDIA GeForce RTX 3070",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B660M-A D4",
|
|
"ip_address": "192.168.0.57",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_47",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 48",
|
|
"mac_address": "00:1A:2B:3C:4D:2F",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "ajpy60r",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24048",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "홍덕현",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_일반구조물팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF B365M-PLUS GAMING",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700F",
|
|
"gpu": "NVIDIA GeForce RTX 2060",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF B365M-PLUS GAMING",
|
|
"ip_address": "192.168.0.58",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_48",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 49",
|
|
"mac_address": "00:1A:2B:3C:4D:30",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "z5b0y98",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24049",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김승호",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_하부구조팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce GTX 2060 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.59",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_49",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 50",
|
|
"mac_address": "00:1A:2B:3C:4D:31",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "ute9io5",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24050",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "최창인",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_하부구조팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF GAMING B460M-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF GAMING B460M-PLUS",
|
|
"ip_address": "192.168.0.60",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_50",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 51",
|
|
"mac_address": "00:1A:2B:3C:4D:32",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "fvhem8r",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24051",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "김현일",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_하부구조팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B250M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-7500F",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ram": "16GB",
|
|
"ssd_1": "250 GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.0TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B250M-K",
|
|
"ip_address": "192.168.0.61",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_51",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 52",
|
|
"mac_address": "00:1A:2B:3C:4D:33",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "97bmvyq",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24052",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "강지영",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_CM기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF GAMING B460m-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF GAMING B460m-PLUS",
|
|
"ip_address": "192.168.0.62",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_52",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 53",
|
|
"mac_address": "00:1A:2B:3C:4D:34",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "fy16xiw",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24053",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "조선두",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_CM기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700KF",
|
|
"gpu": "NVIDIA GeForce GTX 2060",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.63",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_53",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 54",
|
|
"mac_address": "00:1A:2B:3C:4D:35",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "9wwyem9",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24054",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "황선필",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_CM기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H510M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-11400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H510M-A",
|
|
"ip_address": "192.168.0.64",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_54",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 55",
|
|
"mac_address": "00:1A:2B:3C:4D:36",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "awezaum",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24055",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "강상구",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_CM기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B460M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-10700",
|
|
"gpu": "NVIDIA GeForce RTX 3090",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "2TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B460M-K",
|
|
"ip_address": "192.168.0.65",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_55",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 56",
|
|
"mac_address": "00:1A:2B:3C:4D:37",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "9x0oxbq",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24056",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "박상원",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_CM기획팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B250M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-7700K",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B250M-K",
|
|
"ip_address": "192.168.0.66",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_56",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 57",
|
|
"mac_address": "00:1A:2B:3C:4D:38",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "0kdcl6h",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24057",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "이창효",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_DfMA팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF GAMING B460M-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF GAMING B460M-PLUS",
|
|
"ip_address": "192.168.0.67",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_57",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 58",
|
|
"mac_address": "00:1A:2B:3C:4D:39",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "mne1uun",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24058",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "심영표",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_DfMA팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B360M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce RTX 1070",
|
|
"ram": "16GB",
|
|
"ssd_1": "500 GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B360M-K",
|
|
"ip_address": "192.168.0.68",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_58",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 59",
|
|
"mac_address": "00:1A:2B:3C:4D:3A",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "kza697b",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24059",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "이수문",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_DfMA팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250 GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-A",
|
|
"ip_address": "192.168.0.69",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_59",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 60",
|
|
"mac_address": "00:1A:2B:3C:4D:3B",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "snjlmyj",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24060",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "장한규",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_DfMA팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B360M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-8700",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "466 GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B360M-K",
|
|
"ip_address": "192.168.0.70",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_60",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 61",
|
|
"mac_address": "00:1A:2B:3C:4D:3C",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "m4aqivy",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24061",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "변정안",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_DfMA팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "Gigabyte B250M-DS3H-CF",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-7500",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ram": "16GB",
|
|
"ssd_1": "250 GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.0TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "Gigabyte B250M-DS3H-CF",
|
|
"ip_address": "192.168.0.71",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_61",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 62",
|
|
"mac_address": "00:1A:2B:3C:4D:3D",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "4l2zlk1",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24062",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "강명진",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B250M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-7700",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B250M-A",
|
|
"ip_address": "192.168.0.72",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_62",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 63",
|
|
"mac_address": "00:1A:2B:3C:4D:3E",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "4xselpy",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24063",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "손원일",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_단지설계개발셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS TUF B365M-PLUS GAMING",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS TUF B365M-PLUS GAMING",
|
|
"ip_address": "192.168.0.73",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_63",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 64",
|
|
"mac_address": "00:1A:2B:3C:4D:3F",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "wjiorkl",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24064",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김종석",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_단지설계개발셀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700KF",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME B365M-K",
|
|
"ip_address": "192.168.0.74",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_64",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 65",
|
|
"mac_address": "00:1A:2B:3C:4D:40",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "lntw80q",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24065",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "이현경",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_단지설계개발셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B450M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 7 2700X",
|
|
"gpu": "NVIDIA GeForce GTX 1070",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B450M-A",
|
|
"ip_address": "192.168.0.75",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_65",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 66",
|
|
"mac_address": "00:1A:2B:3C:4D:41",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "lr18rjc",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24066",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김근아",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_단지설계개발셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B460M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-10700",
|
|
"gpu": "NVIDIA GeForce GTX 1660 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "500GB",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B460M-A",
|
|
"ip_address": "192.168.0.76",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_66",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 67",
|
|
"mac_address": "00:1A:2B:3C:4D:42",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "o57ja4y",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24067",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "김규범",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_용지도셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B250M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-7700",
|
|
"gpu": "NVIDIA GeForce GTX 1060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B250M-A",
|
|
"ip_address": "192.168.0.77",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_67",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 68",
|
|
"mac_address": "00:1A:2B:3C:4D:43",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "kbmv6ew",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24068",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "이진수",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_용지도셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce RTX 2060",
|
|
"ram": "48GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME B365M-K",
|
|
"ip_address": "192.168.0.78",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_68",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 69",
|
|
"mac_address": "00:1A:2B:3C:4D:44",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "zhowslh",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24069",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "임성엽",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_용지도셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME H610M-E D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME H610M-E D4",
|
|
"ip_address": "192.168.0.79",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_69",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 70",
|
|
"mac_address": "00:1A:2B:3C:4D:45",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "m7dvh0i",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24070",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김예서",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_용지도셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce RTX 3090",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME B365M-K",
|
|
"ip_address": "192.168.0.80",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_70",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 71",
|
|
"mac_address": "00:1A:2B:3C:4D:46",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "fwk7jio",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24071",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "신봉진",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_천지인셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME Z370-P",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-8700K",
|
|
"gpu": "NVIDIA GeForce GTX 1070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME Z370-P",
|
|
"ip_address": "192.168.0.81",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_71",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 72",
|
|
"mac_address": "00:1A:2B:3C:4D:47",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "g9ko9wg",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24072",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "안대욱",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_천지인셀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS TUF B365M-PLUS GAMING",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS TUF B365M-PLUS GAMING",
|
|
"ip_address": "192.168.0.82",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_72",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 73",
|
|
"mac_address": "00:1A:2B:3C:4D:48",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "b77687i",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24073",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "정주현",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_천지인셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME H670-PLUS D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700F",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME H670-PLUS D4",
|
|
"ip_address": "192.168.0.83",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_73",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 74",
|
|
"mac_address": "00:1A:2B:3C:4D:49",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "u1ii9g3",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24074",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "백순철",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_천지인셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME H610M-E D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "64GB",
|
|
"ssd_1": "1 TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2 TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME H610M-E D4",
|
|
"ip_address": "192.168.0.84",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_74",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 75",
|
|
"mac_address": "00:1A:2B:3C:4D:4A",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "hvcbyyh",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24075",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "전제경",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "천지인팀_천지인셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME H610M-D D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500 GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2 TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME H610M-D D4",
|
|
"ip_address": "192.168.0.85",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_75",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 76",
|
|
"mac_address": "00:1A:2B:3C:4D:4B",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "uf1icdf",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24076",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "이화영",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "터널팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce GTX 2060 SUPER",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-A",
|
|
"ip_address": "192.168.0.86",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_76",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 77",
|
|
"mac_address": "00:1A:2B:3C:4D:4C",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "t9wstpe",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24077",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "심재훈",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "터널팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B365M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-9400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "233GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B365M DS3H",
|
|
"ip_address": "192.168.0.87",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_77",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 78",
|
|
"mac_address": "00:1A:2B:3C:4D:4D",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "1s0ddas",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24078",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "최정혁",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "터널팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce GTX 1660 SUPER",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.88",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_78",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 79",
|
|
"mac_address": "00:1A:2B:3C:4D:4E",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "ds11eo3",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24079",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "박민선",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "터널팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.89",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_79",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 80",
|
|
"mac_address": "00:1A:2B:3C:4D:4F",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "s4ntrkf",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24080",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "이상목",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "터널팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B360M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce GTX 1070",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B360M-K",
|
|
"ip_address": "192.168.0.90",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_80",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 81",
|
|
"mac_address": "00:1A:2B:3C:4D:50",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "ymastrt",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24081",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "이민지",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "일반구조물 Div_하부구조팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF GAMING B460M-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "233GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF GAMING B460M-PLUS",
|
|
"ip_address": "192.168.0.91",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_81",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 82",
|
|
"mac_address": "00:1A:2B:3C:4D:51",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "4qfjqzq",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24082",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "정요한",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Construction Control팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B250M-DS3H-CF",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-7500",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B250M-DS3H-CF",
|
|
"ip_address": "192.168.0.92",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_82",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 83",
|
|
"mac_address": "00:1A:2B:3C:4D:52",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "bw7i863",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24083",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "김남걸",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Construction Control팀_공정관리셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B460M-A R2.0",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-11400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B460M-A R2.0",
|
|
"ip_address": "192.168.0.93",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_83",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 84",
|
|
"mac_address": "00:1A:2B:3C:4D:53",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "7sxcou6",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24084",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "신원태",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Construction Control팀_공정관리셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME Z390M-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce GTX 1070",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME Z390M-PLUS",
|
|
"ip_address": "192.168.0.94",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_84",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 85",
|
|
"mac_address": "00:1A:2B:3C:4D:54",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "9idshv8",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24085",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "유효식",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Construction Control팀_공정관리셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B250M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-7500",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "1TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B250M-K",
|
|
"ip_address": "192.168.0.95",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_85",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 86",
|
|
"mac_address": "00:1A:2B:3C:4D:55",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "gb5hnvd",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24086",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김윤권",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Construction Control팀_공정관리셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-9400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.96",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_86",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 87",
|
|
"mac_address": "00:1A:2B:3C:4D:56",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "iua8t5e",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24087",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "오문성",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Construction Control팀_단가산출셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-D D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700F",
|
|
"gpu": "NVIDIA GeForce RTX 2060",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-D D4",
|
|
"ip_address": "192.168.0.97",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_87",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 88",
|
|
"mac_address": "00:1A:2B:3C:4D:57",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "d29sjkc",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24088",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "이정곤",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Construction Control팀_단가산출셀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-A",
|
|
"ip_address": "192.168.0.98",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_88",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 89",
|
|
"mac_address": "00:1A:2B:3C:4D:58",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "xy13pi8",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24089",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김도우",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Construction Control팀_단가산출셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-A",
|
|
"ip_address": "192.168.0.99",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_89",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 90",
|
|
"mac_address": "00:1A:2B:3C:4D:59",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "m2jsgd3",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24090",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "이호성",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "GSIM 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-D D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "2TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-D D4",
|
|
"ip_address": "192.168.0.100",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_90",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 91",
|
|
"mac_address": "00:1A:2B:3C:4D:5A",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "el3gyfc",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24091",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "기윤서",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "GSIM 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B460M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-10700",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B460M-K",
|
|
"ip_address": "192.168.0.101",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_91",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 92",
|
|
"mac_address": "00:1A:2B:3C:4D:5B",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "i979qvj",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24092",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "박정우",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "GSIM 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "Gigabyte B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "Gigabyte B760M DS3H",
|
|
"ip_address": "192.168.0.102",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_92",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 93",
|
|
"mac_address": "00:1A:2B:3C:4D:5C",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "eqpro9b",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24093",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "민홍",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "GSIM 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "MPG Z690 Force wifi",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-12900K",
|
|
"gpu": "NVIDIA GeForce RTX 3090 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "MPG Z690 Force wifi",
|
|
"ip_address": "192.168.0.103",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_93",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 94",
|
|
"mac_address": "00:1A:2B:3C:4D:5D",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "9o7hpz1",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24094",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김도현",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "GSIM 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B460M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-10700",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B460M-K",
|
|
"ip_address": "192.168.0.104",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_94",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 95",
|
|
"mac_address": "00:1A:2B:3C:4D:5E",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "8vr206d",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24095",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "손제근",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "GSIM 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-K",
|
|
"ip_address": "192.168.0.105",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_95",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 96",
|
|
"mac_address": "00:1A:2B:3C:4D:5F",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "whb951n",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24096",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "박지은",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "GSIM 개발팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-K",
|
|
"ip_address": "192.168.0.106",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_96",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 97",
|
|
"mac_address": "00:1A:2B:3C:4D:60",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "m36yt6n",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24097",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "최준호",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "GSIM 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-K",
|
|
"ip_address": "192.168.0.107",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_97",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 98",
|
|
"mac_address": "00:1A:2B:3C:4D:61",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "b2xhywm",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24098",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "김건우A",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "GSIM 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "Gigabyte B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "Gigabyte B760M DS3H",
|
|
"ip_address": "192.168.0.108",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_98",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 99",
|
|
"mac_address": "00:1A:2B:3C:4D:62",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "bi2jylb",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24099",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "문남연",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B360M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce GTX 1070",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B360M-K",
|
|
"ip_address": "192.168.0.109",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_99",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 100",
|
|
"mac_address": "00:1A:2B:3C:4D:63",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "e1myehm",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24100",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "노준",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_비탈면/구조물셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760 GAMING X",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760 GAMING X",
|
|
"ip_address": "192.168.0.110",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_100",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 101",
|
|
"mac_address": "00:1A:2B:3C:4D:64",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "tifzzec",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24101",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "이가연",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_비탈면/구조물셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B450M-K II",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 5600X",
|
|
"gpu": "NVIDIA GeForce RTX 3060 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B450M-K II",
|
|
"ip_address": "192.168.0.111",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_101",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 102",
|
|
"mac_address": "00:1A:2B:3C:4D:65",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "z1y6opr",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24102",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "류한솔",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Primal/평면셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760 GAMING X",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760 GAMING X",
|
|
"ip_address": "192.168.0.112",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_102",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 103",
|
|
"mac_address": "00:1A:2B:3C:4D:66",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "h16hrlu",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24103",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김영배",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Primal/평면셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700KF",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.113",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_103",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 104",
|
|
"mac_address": "00:1A:2B:3C:4D:67",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "1hejkjh",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24104",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "표재학",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Primal/평면셀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B450M-K II",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 5600X",
|
|
"gpu": "NVIDIA GeForce GTX 1650",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B450M-K II",
|
|
"ip_address": "192.168.0.114",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_104",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 105",
|
|
"mac_address": "00:1A:2B:3C:4D:68",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "swlat6y",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24105",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "이예찬",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Primal/평면셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF GAMING X670E-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 7900X",
|
|
"gpu": "NVIDIA GeForce RTX 4070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF GAMING X670E-PLUS",
|
|
"ip_address": "192.168.0.115",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_105",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 106",
|
|
"mac_address": "00:1A:2B:3C:4D:69",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "x7188yo",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24106",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "김재현",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Watch BIM셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-D D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-D D4",
|
|
"ip_address": "192.168.0.116",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_106",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 107",
|
|
"mac_address": "00:1A:2B:3C:4D:6A",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "dshodym",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24107",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "박경빈",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Watch BIM셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-K",
|
|
"ip_address": "192.168.0.117",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_107",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 108",
|
|
"mac_address": "00:1A:2B:3C:4D:6B",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "u8ew8g8",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24108",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "박채영",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Watch BIM셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-A",
|
|
"ip_address": "192.168.0.118",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_108",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 109",
|
|
"mac_address": "00:1A:2B:3C:4D:6C",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "zyttqv8",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24109",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "신찬웅",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Watch BIM셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.119",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_109",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 110",
|
|
"mac_address": "00:1A:2B:3C:4D:6D",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "595jwgr",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24110",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "장용섭",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Way Draw셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700KF",
|
|
"gpu": "NVIDIA GeForce RTX 2060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.120",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_110",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 111",
|
|
"mac_address": "00:1A:2B:3C:4D:6E",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "90bczcq",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24111",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "최윤진",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Way Draw셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B560M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-11700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B560M-A",
|
|
"ip_address": "192.168.0.121",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_111",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 112",
|
|
"mac_address": "00:1A:2B:3C:4D:6F",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "dhykl5v",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24112",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "강성호",
|
|
"user_position": "프로그램 개발자",
|
|
"current_dept": "Infra Solution 개발팀_Way Draw셀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-K",
|
|
"ip_address": "192.168.0.122",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_112",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 113",
|
|
"mac_address": "00:1A:2B:3C:4D:70",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "y0p5rh1",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24113",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "김정훈",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B350M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 7 1700X",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "256GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B350M-A",
|
|
"ip_address": "192.168.0.123",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_113",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 114",
|
|
"mac_address": "00:1A:2B:3C:4D:71",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "afkxryf",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24114",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "황은식",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700KF",
|
|
"gpu": "NVIDIA GeForce RTX 2060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.124",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_114",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 115",
|
|
"mac_address": "00:1A:2B:3C:4D:72",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "umzbqhd",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24115",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김원기A",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "256GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-K",
|
|
"ip_address": "192.168.0.125",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_115",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 116",
|
|
"mac_address": "00:1A:2B:3C:4D:73",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "c262lak",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24116",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "이광태",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-9900KF",
|
|
"gpu": "NVIDIA GeForce RTX 2070",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365-PLUS",
|
|
"ip_address": "192.168.0.126",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_116",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 117",
|
|
"mac_address": "00:1A:2B:3C:4D:74",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "kmoj80h",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24117",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "이수창",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF GAMING R460M-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "256GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF GAMING R460M-PLUS",
|
|
"ip_address": "192.168.0.127",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_117",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 118",
|
|
"mac_address": "00:1A:2B:3C:4D:75",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "w61hyxj",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24118",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "안효원",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B460M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-11400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "256GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B460M-A",
|
|
"ip_address": "192.168.0.128",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_118",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 119",
|
|
"mac_address": "00:1A:2B:3C:4D:76",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "5zsghzd",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24119",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "문준혁",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-9400F",
|
|
"gpu": "NVIDIA GeForce GTX 1650",
|
|
"ram": "32GB",
|
|
"ssd_1": "256GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.129",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_119",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 120",
|
|
"mac_address": "00:1A:2B:3C:4D:77",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "mujj7v9",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24120",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "이배승",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 5060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.130",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_120",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 121",
|
|
"mac_address": "00:1A:2B:3C:4D:78",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "gxw735w",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24121",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "조용민",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-A",
|
|
"ip_address": "192.168.0.131",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_121",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 122",
|
|
"mac_address": "00:1A:2B:3C:4D:79",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "9scryzj",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24122",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "윤현욱",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B250M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-7700",
|
|
"gpu": "NVIDIA GeForce RTX 2060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B250M-A",
|
|
"ip_address": "192.168.0.132",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_122",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 123",
|
|
"mac_address": "00:1A:2B:3C:4D:7A",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "6szwqai",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24123",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "김이훈",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-14400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "256GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.133",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_123",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 124",
|
|
"mac_address": "00:1A:2B:3C:4D:7B",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "x2st5f6",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24124",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "진희성",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.134",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_124",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 125",
|
|
"mac_address": "00:1A:2B:3C:4D:7C",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "xc06iuy",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24125",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "박석현",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.135",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_125",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 126",
|
|
"mac_address": "00:1A:2B:3C:4D:7D",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "otn507e",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24126",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "권장승",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.136",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_126",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 127",
|
|
"mac_address": "00:1A:2B:3C:4D:7E",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "072gsz2",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24127",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "성유정",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 1팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.137",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_127",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 128",
|
|
"mac_address": "00:1A:2B:3C:4D:7F",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "8skwhy2",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24128",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "김병조",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME Z790-P",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 3070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "3.6TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME Z790-P",
|
|
"ip_address": "192.168.0.138",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_128",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 129",
|
|
"mac_address": "00:1A:2B:3C:4D:80",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "kz0k936",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24129",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "표종진",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-9400F",
|
|
"gpu": "NVIDIA GeForce GTX 1660",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "2TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.139",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_129",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 130",
|
|
"mac_address": "00:1A:2B:3C:4D:81",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "e4fd56w",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24130",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "이주형",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "500GB",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "2TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.140",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_130",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 131",
|
|
"mac_address": "00:1A:2B:3C:4D:82",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "3935xi8",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24131",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "이동호",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-K",
|
|
"ip_address": "192.168.0.141",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_131",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 132",
|
|
"mac_address": "00:1A:2B:3C:4D:83",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "htva1qv",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24132",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "정학재",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.142",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_132",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 133",
|
|
"mac_address": "00:1A:2B:3C:4D:84",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "kujxaxb",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24133",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "박성원",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.143",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_133",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 134",
|
|
"mac_address": "00:1A:2B:3C:4D:85",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "jqywxb5",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24134",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "이병욱A",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.144",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_134",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 135",
|
|
"mac_address": "00:1A:2B:3C:4D:86",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "h6d8d17",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24135",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "신영교",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M-K",
|
|
"ip_address": "192.168.0.145",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_135",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 136",
|
|
"mac_address": "00:1A:2B:3C:4D:87",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "uakhji5",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24136",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "한동현",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.146",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_136",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 137",
|
|
"mac_address": "00:1A:2B:3C:4D:88",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "s85bt8e",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24137",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "곽동권",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.147",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_137",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 138",
|
|
"mac_address": "00:1A:2B:3C:4D:89",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "nce6dez",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24138",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "이에녹",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.148",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_138",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 139",
|
|
"mac_address": "00:1A:2B:3C:4D:8A",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "y47w1m3",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24139",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "박종혁",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 2팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-K",
|
|
"ip_address": "192.168.0.149",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_139",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 140",
|
|
"mac_address": "00:1A:2B:3C:4D:8B",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "y3k6ov7",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "PC-24140",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김지영",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Infra Solution Div_인프라BIM 3팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce RTX 2070",
|
|
"ram": "32GB",
|
|
"ssd_1": "466GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-K",
|
|
"ip_address": "192.168.0.150",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_140",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 141",
|
|
"mac_address": "00:1A:2B:3C:4D:8C",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "qvvdbc4",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24141",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "김성엽",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 3팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.151",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_141",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 142",
|
|
"mac_address": "00:1A:2B:3C:4D:8D",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "eobehfx",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24142",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "한반석",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 3팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.152",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_142",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 143",
|
|
"mac_address": "00:1A:2B:3C:4D:8E",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "4atu2pm",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24143",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "유서진",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 3팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.153",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_143",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 144",
|
|
"mac_address": "00:1A:2B:3C:4D:8F",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "5wt3qnu",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24144",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "함도원",
|
|
"user_position": "BIM모델러",
|
|
"current_dept": "Infra Solution Div_인프라BIM 3팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B660M-A D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-12900K",
|
|
"gpu": "NVIDIA GeForce RTX 3070",
|
|
"ram": "32GB",
|
|
"ssd_1": "932GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B660M-A D4",
|
|
"ip_address": "192.168.0.154",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_144",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 145",
|
|
"mac_address": "00:1A:2B:3C:4D:90",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "p5v9fsf",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24145",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "이호경",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Strana 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B250M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-7700K",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B250M-K",
|
|
"ip_address": "192.168.0.155",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_145",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 146",
|
|
"mac_address": "00:1A:2B:3C:4D:91",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "utwofpx",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24146",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "김경종",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "Strana 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B250M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-7700",
|
|
"gpu": "NVIDIA GeForce GTX 1070 Ti",
|
|
"ram": "48GB",
|
|
"ssd_1": "512GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B250M-A",
|
|
"ip_address": "192.168.0.156",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_146",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 147",
|
|
"mac_address": "00:1A:2B:3C:4D:92",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "lpy5l4t",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24147",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "유승민",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "Strana 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-E D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-12400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-E D4",
|
|
"ip_address": "192.168.0.157",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_147",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 148",
|
|
"mac_address": "00:1A:2B:3C:4D:93",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "1s7bpiq",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24148",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "마르코",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "Strana 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B360M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce RTX 4090",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "2TB",
|
|
"ssd_3": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B360M-K",
|
|
"ip_address": "192.168.0.158",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_148",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 149",
|
|
"mac_address": "00:1A:2B:3C:4D:94",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "2dma98k",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24149",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "최진헌",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "Strana 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-E D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "64GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-E D4",
|
|
"ip_address": "192.168.0.159",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_149",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 150",
|
|
"mac_address": "00:1A:2B:3C:4D:95",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "rygtcoj",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24150",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "강정훈",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "Strana 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900F",
|
|
"gpu": "NVIDIA GeForce RTX 5070",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "0",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-A",
|
|
"ip_address": "192.168.0.160",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_150",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 151",
|
|
"mac_address": "00:1A:2B:3C:4D:96",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "54wf2as",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24151",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "정호진",
|
|
"user_position": "3D 개발자",
|
|
"current_dept": "Strana 개발팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-E D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-E D4",
|
|
"ip_address": "192.168.0.161",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_151",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 152",
|
|
"mac_address": "00:1A:2B:3C:4D:97",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "pz8142p",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24152",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "김윤하",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "Web Solution팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME H610M-E D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-12700F",
|
|
"gpu": "NVIDIA GeForce RTX 2070 SUPER",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME H610M-E D4",
|
|
"ip_address": "192.168.0.162",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_152",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 153",
|
|
"mac_address": "00:1A:2B:3C:4D:98",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "swmkdle",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24153",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "한지아",
|
|
"user_position": "UXUI 디자이너",
|
|
"current_dept": "Web Solution팀_디자인셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "MSI B450M MORTAR MAX (MS-7B89)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 5900X",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "64GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "MSI B450M MORTAR MAX (MS-7B89)",
|
|
"ip_address": "192.168.0.163",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_153",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 154",
|
|
"mac_address": "00:1A:2B:3C:4D:99",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "qez310i",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24154",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "이한울",
|
|
"user_position": "UXUI 디자이너",
|
|
"current_dept": "Web Solution팀_디자인셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "MAG B550M MORTAR (MS-7C94)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 5900X",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "64GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "MAG B550M MORTAR (MS-7C94)",
|
|
"ip_address": "192.168.0.164",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_154",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 155",
|
|
"mac_address": "00:1A:2B:3C:4D:9A",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "vqefecb",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24155",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "양미연",
|
|
"user_position": "UXUI 디자이너",
|
|
"current_dept": "Web Solution팀_디자인셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "MAG B660M MORTAR DDR4 (MS-7D42)",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 2070",
|
|
"ram": "32GB",
|
|
"ssd_1": "466GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "MAG B660M MORTAR DDR4 (MS-7D42)",
|
|
"ip_address": "192.168.0.165",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_155",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 156",
|
|
"mac_address": "00:1A:2B:3C:4D:9B",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "4q2ioy0",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24156",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "정명준",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "Web Solution팀_솔루션개발셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME B365M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce RTX 2070 SUPER",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME B365M-K",
|
|
"ip_address": "192.168.0.166",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_156",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 157",
|
|
"mac_address": "00:1A:2B:3C:4D:9C",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "95o16o9",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24157",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김진선",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "Web Solution팀_솔루션개발셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME B360M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce GTX 1070",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME B360M-K",
|
|
"ip_address": "192.168.0.167",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_157",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 158",
|
|
"mac_address": "00:1A:2B:3C:4D:9D",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "7ooaagd",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24158",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "최진태",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "Web Solution팀_솔루션개발셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME H510M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-11400",
|
|
"gpu": "NVIDIA GeForce GTX 750 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "256GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME H510M-A",
|
|
"ip_address": "192.168.0.168",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_158",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 159",
|
|
"mac_address": "00:1A:2B:3C:4D:9E",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "yagi59r",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24159",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "윤석무",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "Web Solution팀_솔루션개발셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "32GB",
|
|
"ssd_1": "466GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H",
|
|
"ip_address": "192.168.0.169",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_159",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 160",
|
|
"mac_address": "00:1A:2B:3C:4D:9F",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "vsd9l4h",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24160",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "이병권",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "Web Solution팀_전산관리셀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B460M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-11400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B460M-A",
|
|
"ip_address": "192.168.0.170",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_160",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 161",
|
|
"mac_address": "00:1A:2B:3C:4D:A0",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "qudjpsp",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24161",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "신지호",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "Web Solution팀_ERP셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B360M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce GTX 1070",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B360M-K",
|
|
"ip_address": "192.168.0.171",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_161",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 162",
|
|
"mac_address": "00:1A:2B:3C:4D:A1",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "rnrbg4l",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24162",
|
|
"purchase_date": "2015-01",
|
|
"user_current": "김한결",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "Web Solution팀_ERP셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS H110M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-6600",
|
|
"gpu": "NVIDIA GeForce GTX 1650",
|
|
"ram": "16GB",
|
|
"ssd_1": "120GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS H110M-K",
|
|
"ip_address": "192.168.0.172",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_162",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 163",
|
|
"mac_address": "00:1A:2B:3C:4D:A2",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "px79fsz",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24163",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김병철",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "Web Solution팀_ERP셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-A",
|
|
"ip_address": "192.168.0.173",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_163",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 164",
|
|
"mac_address": "00:1A:2B:3C:4D:A3",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "peubt2r",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24164",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "서승완",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "Web Solution팀_ERP셀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASRock : B250M Pro4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-7700K",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASRock : B250M Pro4",
|
|
"ip_address": "192.168.0.174",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_164",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 165",
|
|
"mac_address": "00:1A:2B:3C:4D:A4",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "hrlklyj",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24165",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김우진A",
|
|
"user_position": "기획자",
|
|
"current_dept": "경영기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME A320M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 5600X",
|
|
"gpu": "NVIDIA GeForce GTX 1650",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME A320M-K",
|
|
"ip_address": "192.168.0.175",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_165",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 166",
|
|
"mac_address": "00:1A:2B:3C:4D:A5",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "a2a92lv",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24166",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "임민경",
|
|
"user_position": "기획자",
|
|
"current_dept": "경영기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H510M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-11400",
|
|
"gpu": "Intel(R) UHD Graphics",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H510M-A",
|
|
"ip_address": "192.168.0.176",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_166",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 167",
|
|
"mac_address": "00:1A:2B:3C:4D:A6",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "lfeowyh",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24167",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "최선아",
|
|
"user_position": "기획자",
|
|
"current_dept": "경영기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-A",
|
|
"ip_address": "192.168.0.177",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_167",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 168",
|
|
"mac_address": "00:1A:2B:3C:4D:A7",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "ej169xn",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24168",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김윤재",
|
|
"user_position": "기획자",
|
|
"current_dept": "경영기획팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME A520M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 5600G",
|
|
"gpu": "내장 그래픽",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME A520M-K",
|
|
"ip_address": "192.168.0.178",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_168",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 169",
|
|
"mac_address": "00:1A:2B:3C:4D:A8",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "lybsx74",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24169",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "이미영A",
|
|
"user_position": "기획자",
|
|
"current_dept": "경영기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "Intel(R) UHD Graphics 630",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-A",
|
|
"ip_address": "192.168.0.179",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_169",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 170",
|
|
"mac_address": "00:1A:2B:3C:4D:A9",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "fud9fl4",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "PC-24170",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "국혜림",
|
|
"user_position": "기획자",
|
|
"current_dept": "경영기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF B365M-PLUS GAMING",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"gpu": "NVIDIA GeForce GTX 2070",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF B365M-PLUS GAMING",
|
|
"ip_address": "192.168.0.180",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_170",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 171",
|
|
"mac_address": "00:1A:2B:3C:4D:AA",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "lrtotxe",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24171",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김원기",
|
|
"user_position": "기획자",
|
|
"current_dept": "기술기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF Gaming Z490-Plus",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-10900",
|
|
"gpu": "NVIDIA GeForce RTX 3090",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF Gaming Z490-Plus",
|
|
"ip_address": "192.168.0.181",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_171",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 172",
|
|
"mac_address": "00:1A:2B:3C:4D:AB",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "16uutld",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24172",
|
|
"purchase_date": "2019-01",
|
|
"user_current": "홍아름",
|
|
"user_position": "기획자",
|
|
"current_dept": "기술기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME X570-P",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 3900X",
|
|
"gpu": "NVIDIA GeForce RTX 3090",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME X570-P",
|
|
"ip_address": "192.168.0.182",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_172",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 173",
|
|
"mac_address": "00:1A:2B:3C:4D:AC",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "ym1ende",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24173",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "이경민",
|
|
"user_position": "기획자",
|
|
"current_dept": "기술기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-A",
|
|
"ip_address": "192.168.0.183",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_173",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 174",
|
|
"mac_address": "00:1A:2B:3C:4D:AD",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "1jwgi62",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24174",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김혜인",
|
|
"user_position": "기획자",
|
|
"current_dept": "기술기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF Gaming B460M-Plus",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF Gaming B460M-Plus",
|
|
"ip_address": "192.168.0.184",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_174",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 175",
|
|
"mac_address": "00:1A:2B:3C:4D:AE",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "52qla80",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24175",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "황동환",
|
|
"user_position": "기획자",
|
|
"current_dept": "기술기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 750",
|
|
"ram": "32GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-K",
|
|
"ip_address": "192.168.0.185",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_175",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 176",
|
|
"mac_address": "00:1A:2B:3C:4D:AF",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "hxzz4zh",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24176",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "최현호",
|
|
"user_position": "기획자",
|
|
"current_dept": "기술기획팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-A",
|
|
"ip_address": "192.168.0.186",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_176",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 177",
|
|
"mac_address": "00:1A:2B:3C:4D:B0",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "hqjx0qz",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24177",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "이태훈",
|
|
"user_position": "기획자",
|
|
"current_dept": "기술기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H510M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-11400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H510M-A",
|
|
"ip_address": "192.168.0.187",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_177",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 178",
|
|
"mac_address": "00:1A:2B:3C:4D:B1",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "42r3xoz",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24178",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "김신지",
|
|
"user_position": "기획자",
|
|
"current_dept": "기술기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-A",
|
|
"ip_address": "192.168.0.188",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_178",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 179",
|
|
"mac_address": "00:1A:2B:3C:4D:B2",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "fz1wzir",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24179",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "조찬영",
|
|
"user_position": "AI 개발자",
|
|
"current_dept": "기술기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME X670-P WIFI",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 7950X",
|
|
"gpu": "NVIDIA GeForce RTX 4090",
|
|
"ram": "128GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME X670-P WIFI",
|
|
"ip_address": "192.168.0.189",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_179",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 180",
|
|
"mac_address": "00:1A:2B:3C:4D:B3",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "tpxiaon",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24180",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "김용연",
|
|
"user_position": "AI 개발자",
|
|
"current_dept": "기술기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME X670-P WIFI",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 7950X",
|
|
"gpu": "NVIDIA GeForce RTX 4090",
|
|
"ram": "128GB",
|
|
"ssd_1": "1.8TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME X670-P WIFI",
|
|
"ip_address": "192.168.0.190",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_180",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 181",
|
|
"mac_address": "00:1A:2B:3C:4D:B4",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "lp9og3g",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24181",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "신혜영",
|
|
"user_position": "3D 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "Z790 AORUS ELITE",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900K",
|
|
"gpu": "NVIDIA GeForce RTX 4080",
|
|
"ram": "64GB",
|
|
"ssd_1": "1.8TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "3.6TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "Z790 AORUS ELITE",
|
|
"ip_address": "192.168.0.191",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_181",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 182",
|
|
"mac_address": "00:1A:2B:3C:4D:B5",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "jiv35cl",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24182",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "정은혜",
|
|
"user_position": "3D 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ram": "64GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-A",
|
|
"ip_address": "192.168.0.192",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_182",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 183",
|
|
"mac_address": "00:1A:2B:3C:4D:B6",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "h6raqmy",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24183",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "김태식A",
|
|
"user_position": "3D 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "Z790 AORUS ELITE",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900F",
|
|
"gpu": "NVIDIA GeForce RTX 4080",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "Z790 AORUS ELITE",
|
|
"ip_address": "192.168.0.193",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_183",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 184",
|
|
"mac_address": "00:1A:2B:3C:4D:B7",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "aj68sky",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "PC-24184",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "최혜은",
|
|
"user_position": "3D 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900KF",
|
|
"gpu": "NVIDIA GeForce RTX 3070",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760-PLUS",
|
|
"ip_address": "192.168.0.194",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_184",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 185",
|
|
"mac_address": "00:1A:2B:3C:4D:B8",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "r3ktf22",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24185",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "채선영",
|
|
"user_position": "편집 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900KF",
|
|
"gpu": "NVIDIA GeForce RTX 4070 Ti",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760-PLUS",
|
|
"ip_address": "192.168.0.195",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_185",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 186",
|
|
"mac_address": "00:1A:2B:3C:4D:B9",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "v4vohne",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24186",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "최영환",
|
|
"user_position": "편집 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B660M DS3H DDR4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900F",
|
|
"gpu": "NVIDIA GeForce RTX 3090 Ti",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "4TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B660M DS3H DDR4",
|
|
"ip_address": "192.168.0.196",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_186",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 187",
|
|
"mac_address": "00:1A:2B:3C:4D:BA",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "f40ahg9",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24187",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "윤봄이",
|
|
"user_position": "편집 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B660M-A D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900F",
|
|
"gpu": "NVIDIA GeForce RTX 4070 Ti",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B660M-A D4",
|
|
"ip_address": "192.168.0.197",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_187",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 188",
|
|
"mac_address": "00:1A:2B:3C:4D:BB",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "cfjs6k2",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24188",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "이예진",
|
|
"user_position": "편집 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B660M-A D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900F",
|
|
"gpu": "NVIDIA GeForce RTX 3070",
|
|
"ram": "64GB",
|
|
"ssd_1": "932GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B660M-A D4",
|
|
"ip_address": "192.168.0.198",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_188",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 189",
|
|
"mac_address": "00:1A:2B:3C:4D:BC",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "gzc3gsi",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24189",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "허유나",
|
|
"user_position": "편집 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-9900KF",
|
|
"gpu": "NVIDIA GeForce RTX 2070",
|
|
"ram": "64GB",
|
|
"ssd_1": "500",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8tb",
|
|
"hdd_2": "1.8tb",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365-PLUS",
|
|
"ip_address": "192.168.0.199",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_189",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 190",
|
|
"mac_address": "00:1A:2B:3C:4D:BD",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "lv6a6k0",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24190",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "마희연",
|
|
"user_position": "편집 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B660M-A D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900F",
|
|
"gpu": "NVIDIA GeForce RTX 3070",
|
|
"ram": "64GB",
|
|
"ssd_1": "932GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B660M-A D4",
|
|
"ip_address": "192.168.0.200",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_190",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 191",
|
|
"mac_address": "00:1A:2B:3C:4D:BE",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "vqnk92s",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24191",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "김수현",
|
|
"user_position": "3D 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M DS3H DDR4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-14700",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "64GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M DS3H DDR4",
|
|
"ip_address": "192.168.0.201",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_191",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 192",
|
|
"mac_address": "00:1A:2B:3C:4D:BF",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "x20dvli",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24192",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "박지영",
|
|
"user_position": "3D 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B660M DS3H DDR4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900F",
|
|
"gpu": "NVIDIA GeForce RTX 3090 Ti",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "4TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B660M DS3H DDR4",
|
|
"ip_address": "192.168.0.202",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_192",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 193",
|
|
"mac_address": "00:1A:2B:3C:4D:C0",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "xbcxfhi",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24193",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "권순호",
|
|
"user_position": "3D 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-A D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-12900F",
|
|
"gpu": "NVIDIA GeForce RTX 4080",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "4TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-A D4",
|
|
"ip_address": "192.168.0.203",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_193",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 194",
|
|
"mac_address": "00:1A:2B:3C:4D:C1",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "7l9xw7d",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24194",
|
|
"purchase_date": "2024-01",
|
|
"user_current": "정두휘",
|
|
"user_position": "3D 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "TUF GAMING B650M-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 9 9900X",
|
|
"gpu": "NVIDIA GeForce RTX 4090",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "TUF GAMING B650M-PLUS",
|
|
"ip_address": "192.168.0.204",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_194",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 195",
|
|
"mac_address": "00:1A:2B:3C:4D:C2",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "ciq854z",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24195",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "김정석",
|
|
"user_position": "편집 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B660M-A D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900F",
|
|
"gpu": "NVIDIA GeForce RTX 4070 Ti",
|
|
"ram": "64GB",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B660M-A D4",
|
|
"ip_address": "192.168.0.205",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_195",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 196",
|
|
"mac_address": "00:1A:2B:3C:4D:C3",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "w8bf6ci",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24196",
|
|
"purchase_date": "2023-01",
|
|
"user_current": "정지윤",
|
|
"user_position": "편집 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B760M AORUS ELITE",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-14900K",
|
|
"gpu": "NVIDIA GeForce RTX 4070 SUPER",
|
|
"ram": "64GB",
|
|
"ssd_1": "1.8TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B760M AORUS ELITE",
|
|
"ip_address": "192.168.0.206",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_196",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 197",
|
|
"mac_address": "00:1A:2B:3C:4D:C4",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "66vdoux",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24197",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "양숙영",
|
|
"user_position": "편집 디자이너",
|
|
"current_dept": "디자인기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B760M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i9-13900F",
|
|
"gpu": "NVIDIA GeForce RTX 4080 SUPER",
|
|
"ram": "64GB",
|
|
"ssd_1": "3.6TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B760M-K",
|
|
"ip_address": "192.168.0.207",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_197",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 198",
|
|
"mac_address": "00:1A:2B:3C:4D:C5",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "861requ",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24198",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "윤준수",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "솔루션통합팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME H510M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-11400",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME H510M-A",
|
|
"ip_address": "192.168.0.208",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_198",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 199",
|
|
"mac_address": "00:1A:2B:3C:4D:C6",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "0daj8vb",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24199",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "권혁진",
|
|
"user_position": "기획자",
|
|
"current_dept": "솔루션통합팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H310M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) I5-9400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "8GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H310M-K",
|
|
"ip_address": "192.168.0.209",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_199",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 200",
|
|
"mac_address": "00:1A:2B:3C:4D:C7",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "vuuvyr6",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "PC-24200",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "염승호",
|
|
"user_position": "엔지니어",
|
|
"current_dept": "솔루션통합팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B350M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 7 1800X",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B350M-A",
|
|
"ip_address": "192.168.0.210",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_200",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 201",
|
|
"mac_address": "00:1A:2B:3C:4D:C8",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "ymdzwdc",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "PC-24201",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "김지영",
|
|
"user_position": "기획자",
|
|
"current_dept": "솔루션통합팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B365M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700KF",
|
|
"gpu": "NVIDIA GeForce RTX 2060",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B365M-A",
|
|
"ip_address": "192.168.0.211",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_201",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 202",
|
|
"mac_address": "00:1A:2B:3C:4D:C9",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "cx4vkak",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24202",
|
|
"purchase_date": "2013-01",
|
|
"user_current": "조태희",
|
|
"user_position": "기획자",
|
|
"current_dept": "인재성장팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "H87-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-4570",
|
|
"gpu": "NVIDIA GeForce GTX 550 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "H87-PLUS",
|
|
"ip_address": "192.168.0.212",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_202",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 203",
|
|
"mac_address": "00:1A:2B:3C:4D:CA",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "k6rxkq9",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24203",
|
|
"purchase_date": "2015-01",
|
|
"user_current": "최근혜",
|
|
"user_position": "기획자",
|
|
"current_dept": "인재성장팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B150M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-6600",
|
|
"gpu": "AMD Radeon (TM) R9 370",
|
|
"ram": "16GB",
|
|
"ssd_1": "120GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B150M-K",
|
|
"ip_address": "192.168.0.213",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_203",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 204",
|
|
"mac_address": "00:1A:2B:3C:4D:CB",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "awf5xlu",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24204",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "류원준",
|
|
"user_position": "기획자",
|
|
"current_dept": "인재성장팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H410M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"gpu": "NVIDIA GeForce GTX 1650",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H410M-A",
|
|
"ip_address": "192.168.0.214",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_204",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 205",
|
|
"mac_address": "00:1A:2B:3C:4D:CC",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "z7ov2a8",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24205",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "주완기",
|
|
"user_position": "기획자",
|
|
"current_dept": "인재성장팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME A320M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 5600X",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME A320M-K",
|
|
"ip_address": "192.168.0.215",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_205",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 206",
|
|
"mac_address": "00:1A:2B:3C:4D:CD",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "b07jjnb",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24206",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "정성호",
|
|
"user_position": "기획자",
|
|
"current_dept": "인재성장팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "EX-A320M-GAMING",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "AMD Ryzen 5 5600X",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "EX-A320M-GAMING",
|
|
"ip_address": "192.168.0.216",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_206",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 207",
|
|
"mac_address": "00:1A:2B:3C:4D:CE",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "saybbwp",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24207",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "성형일",
|
|
"user_position": "기획자",
|
|
"current_dept": "협업증진팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME Z390M-PLUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME Z390M-PLUS",
|
|
"ip_address": "192.168.0.217",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_207",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 208",
|
|
"mac_address": "00:1A:2B:3C:4D:CF",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "uwnthc6",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24208",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "박주한",
|
|
"user_position": "기획자",
|
|
"current_dept": "협업증진팀",
|
|
"previous_dept": "기획팀",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASRock Z790 Pro RS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700KF",
|
|
"gpu": "NVIDIA GeForce RTX 3070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASRock Z790 Pro RS",
|
|
"ip_address": "192.168.0.218",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_208",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 209",
|
|
"mac_address": "00:1A:2B:3C:4D:D0",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "0fiyb4s",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24209",
|
|
"purchase_date": "2021-01",
|
|
"user_current": "한승민",
|
|
"user_position": "기획자",
|
|
"current_dept": "협업증진팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME H610M-D D4",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-12400F",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ram": "32GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME H610M-D D4",
|
|
"ip_address": "192.168.0.219",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_209",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 210",
|
|
"mac_address": "00:1A:2B:3C:4D:D1",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "qtpkop5",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24210",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "문형석",
|
|
"user_position": "웹 개발자",
|
|
"current_dept": "ERP기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS PRIME B250M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-7700",
|
|
"gpu": "NVIDIA GeForce GTX 1060 6GB",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS PRIME B250M-A",
|
|
"ip_address": "192.168.0.220",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_210",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 211",
|
|
"mac_address": "00:1A:2B:3C:4D:D2",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "27l9a1o",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24211",
|
|
"purchase_date": "2017-01",
|
|
"user_current": "류호성",
|
|
"user_position": "기획자",
|
|
"current_dept": "ERP기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-7500",
|
|
"gpu": "NVIDIA GeForce GTX 750 Ti",
|
|
"ram": "8GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS",
|
|
"ip_address": "192.168.0.221",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_211",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 212",
|
|
"mac_address": "00:1A:2B:3C:4D:D3",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "wizmjat",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24212",
|
|
"purchase_date": "2022-01",
|
|
"user_current": "권오재",
|
|
"user_position": "기획자",
|
|
"current_dept": "ERP기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "ASUS",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-13700F",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ram": "16GB",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "ASUS",
|
|
"ip_address": "192.168.0.222",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_212",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 213",
|
|
"mac_address": "00:1A:2B:3C:4D:D4",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "upzehiw",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "PC-24213",
|
|
"purchase_date": "2018-01",
|
|
"user_current": "송대일",
|
|
"user_position": "기획자",
|
|
"current_dept": "ERP기획팀",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "PRIME B365M-A",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i5-9400F",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ram": "16GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "PRIME B365M-A",
|
|
"ip_address": "192.168.0.223",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_213",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 214",
|
|
"mac_address": "00:1A:2B:3C:4D:D5",
|
|
"hw_status": "운영중"
|
|
},
|
|
{
|
|
"id": "fa6jvoz",
|
|
"asset_type": "개인PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "PC-24214",
|
|
"purchase_date": "2020-01",
|
|
"user_current": "장종찬",
|
|
"user_position": "기획자",
|
|
"current_dept": "총괄기획실",
|
|
"previous_dept": "-",
|
|
"location": "서울본사 7층",
|
|
"manager_primary": "김IT",
|
|
"manager_secondary": "이IT",
|
|
"model_name": "B460M-K",
|
|
"os": "Windows 11 Pro",
|
|
"cpu": "Intel(R) Core(TM) i7-10700F",
|
|
"gpu": "NVIDIA GeForce RTX 3070 Ti",
|
|
"ram": "32GB",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"ssd_3": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"mainboard": "B460M-K",
|
|
"ip_address": "192.168.0.224",
|
|
"purchase_amount": "2200000",
|
|
"purchase_vendor": "LG전자/삼성전자/HP",
|
|
"approval_document": "2024_상반기_PC구매_214",
|
|
"memo": "임직원 지급용",
|
|
"asset_name": "개인PC 215",
|
|
"mac_address": "00:1A:2B:3C:4D:D6",
|
|
"hw_status": "운영중"
|
|
}
|
|
];
|
|
|
|
// ────────────────────────────────────────────────────────
|
|
// 2. 기타 자산 더미 데이터 (서버, 스토리지, 소프트웨어 등 - 엑셀 파싱 연동)
|
|
// ────────────────────────────────────────────────────────
|
|
|
|
export const dummyServers: any[] = [
|
|
{
|
|
"id": "mjz91cl",
|
|
"asset_type": "공용PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "SVR-24000",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "사진 측량 및 드론매핑 프로세싱을 위한 공용PC (Pix4D 전용)",
|
|
"current_dept": "인프라 BIM 1",
|
|
"previous_dept": "-",
|
|
"location": "기술개발센터",
|
|
"manager_primary": "안효원",
|
|
"manager_secondary": "김이훈",
|
|
"ip_address": "172.16.10.50",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRO Z790-A WIFI (MS-7E07)",
|
|
"os": "Windows 10 Enterprise (22H2)",
|
|
"cpu": "13th Gen Intel(R) Core(TM) i9-13900K 3.00 GHz",
|
|
"ram": "64GB",
|
|
"gpu": "NVIDIA GeForce RTX 4080 (16 GB)",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "1TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_0",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "Pix4D 프로세싱PC",
|
|
"mac_address": "00:1A:2B:3C:5E:00",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 77,
|
|
"ram_usage": 93,
|
|
"network_traffic": "310 GB"
|
|
},
|
|
{
|
|
"id": "1xis2rv",
|
|
"asset_type": "공용PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "SVR-24001",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "사진 측량 및 드론매핑 프로세싱을 위한 공용PC (DJI Terra 전용)",
|
|
"current_dept": "인프라 BIM 1",
|
|
"previous_dept": "-",
|
|
"location": "기술개발센터",
|
|
"manager_primary": "안효원",
|
|
"manager_secondary": "김이훈",
|
|
"ip_address": "172.16.10.51",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "Pro WS WRX80E-SAGE SE WIFI",
|
|
"os": "Windows 10 Enterprise (22H2)",
|
|
"cpu": "AMD Ryzen Threadripper PRO 5975WX 32-Cores 3.60 GHz",
|
|
"ram": "128GB",
|
|
"gpu": "NVIDIA GeForce RTX 3090 (24GB) x 2ea",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "8TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_1",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "DJI Terra 프로세싱PC",
|
|
"mac_address": "00:1A:2B:3C:5E:01",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 82,
|
|
"ram_usage": 86,
|
|
"network_traffic": "267 GB"
|
|
},
|
|
{
|
|
"id": "twgpb4n",
|
|
"asset_type": "공용PC",
|
|
"purchase_corp": "장헌",
|
|
"asset_code": "SVR-24002",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "천지인팀 애플리케이션 테스트; Thales Sentinel EMS",
|
|
"current_dept": "천지인",
|
|
"previous_dept": "-",
|
|
"location": "천지인팀",
|
|
"manager_primary": "강명진",
|
|
"manager_secondary": "백순철",
|
|
"ip_address": "172.16.10.52",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "ASUS PRIME B365M-A",
|
|
"os": "Windows 10",
|
|
"cpu": "AMD Ryzen 7 1800X",
|
|
"ram": "32 GiB",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ssd_1": "1 TB",
|
|
"ssd_2": "500 GB",
|
|
"hdd_1": "1 TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_2",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "천지인팀 테스트 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:02",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 15,
|
|
"ram_usage": 24,
|
|
"network_traffic": "309 GB"
|
|
},
|
|
{
|
|
"id": "k677um9",
|
|
"asset_type": "서버_타워형",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "SVR-24003",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "Proxmox HA 클러스터; OPNsense IDS + IPS + CrowdSec; HmMapService 2.0 hot standby 컨테이너(Nginx); HmMapService 2.0 hot standby PostgreSQL",
|
|
"current_dept": "천지인",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "강명진",
|
|
"manager_secondary": "백순철",
|
|
"ip_address": "172.16.10.53",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "HP Z8 G4",
|
|
"os": "Proxmox VE (9.1.11)",
|
|
"cpu": "Intel Xeon Silver 4108 * 2",
|
|
"ram": "128 GiB ECC",
|
|
"gpu": "NVIDIA Quadro P400",
|
|
"ssd_1": "256 GB",
|
|
"ssd_2": "512 GB",
|
|
"hdd_1": "8 TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_3",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "Proxmox VE node A",
|
|
"mac_address": "00:1A:2B:3C:5E:03",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 16,
|
|
"ram_usage": 27,
|
|
"network_traffic": "151 GB"
|
|
},
|
|
{
|
|
"id": "r73p16i",
|
|
"asset_type": "서버_랙마운트",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "SVR-24004",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "Proxmox HA 클러스터; OPNsense IDS + IPS + CrowdSec; 천지인팀 GitLab; GitLab Runner; Domainer production + staging 컨테이너",
|
|
"current_dept": "천지인",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "강명진",
|
|
"manager_secondary": "백순철",
|
|
"ip_address": "172.16.10.54",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "HPE DL360 Gen10",
|
|
"os": "Proxmox VE (9.1.11)",
|
|
"cpu": "Intel Xeon Silver 4208",
|
|
"ram": "64 GiB ECC",
|
|
"gpu": "Matrox G200eH3 (HPE)",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1.2 TB",
|
|
"hdd_2": "1.2 TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_4",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "Proxmox VE node B",
|
|
"mac_address": "00:1A:2B:3C:5E:04",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 20,
|
|
"ram_usage": 40,
|
|
"network_traffic": "67 GB"
|
|
},
|
|
{
|
|
"id": "pbaea9j",
|
|
"asset_type": "서버_랙마운트",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "SVR-24005",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "Proxmox HA 클러스터; OPNsense IDS + IPS + CrowdSec; HmMapService 2.0(Apache + PostgreSQL); 천지인팀 ClickOnce 배포서버(용지도 + GAIA); Domainer PostgreSQL; 큰길 서비스 PostgreSQL; 인트라넷 공간정보신청서비스 프론트엔드 + API 서버",
|
|
"current_dept": "천지인",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "강명진",
|
|
"manager_secondary": "백순철",
|
|
"ip_address": "172.16.10.55",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "HPE DL380 Gen10",
|
|
"os": "Windows Server 2019 Standard\r\nProxmox VE (1809\r\n9.1.11)",
|
|
"cpu": "Intel Xeon Silver 4208",
|
|
"ram": "128 GiB ECC",
|
|
"gpu": "Matrox G200eH3 (HPE)",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1.2 TB",
|
|
"hdd_2": "1.2 TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_5",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "HmMapService 2.0 서버\r\n(Proxmox VE node C)",
|
|
"mac_address": "00:1A:2B:3C:5E:05",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 38,
|
|
"ram_usage": 40,
|
|
"network_traffic": "48 GB"
|
|
},
|
|
{
|
|
"id": "qvyo1rn",
|
|
"asset_type": "서버_워크스테이션",
|
|
"purchase_corp": "한라",
|
|
"asset_code": "SVR-24006",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "큰길 서비스 문서제작 서버",
|
|
"current_dept": "천지인",
|
|
"previous_dept": "-",
|
|
"location": "단지설계셀",
|
|
"manager_primary": "손원일",
|
|
"manager_secondary": "김종석",
|
|
"ip_address": "172.16.10.56",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "Dell 060K5C",
|
|
"os": "Windows 11 pro for Workstation (-)",
|
|
"cpu": "Intel(R) Xeon(R) silver 4210R CPU @ 2.40GHz",
|
|
"ram": "64",
|
|
"gpu": "NVIDIA Quadro RTX 4000",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "4TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_6",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "큰길 운영서버#1",
|
|
"mac_address": "00:1A:2B:3C:5E:06",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 65,
|
|
"ram_usage": 63,
|
|
"network_traffic": "778 GB"
|
|
},
|
|
{
|
|
"id": "7cx1n45",
|
|
"asset_type": "서버PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "SVR-24007",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "큰길 서비스 문서제작 서버",
|
|
"current_dept": "천지인",
|
|
"previous_dept": "-",
|
|
"location": "단지설계셀",
|
|
"manager_primary": "손원일",
|
|
"manager_secondary": "김종석",
|
|
"ip_address": "172.16.10.57",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "Gigabyte B760M DS3H",
|
|
"os": "Windows 10 ent (-)",
|
|
"cpu": "Intel(R) Core(TM) i7-14700F",
|
|
"ram": "32",
|
|
"gpu": "NVIDIA GeForce RTX 4060",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_7",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "큰길 운영서버#2",
|
|
"mac_address": "00:1A:2B:3C:5E:07",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 41,
|
|
"ram_usage": 75,
|
|
"network_traffic": "1783 GB"
|
|
},
|
|
{
|
|
"id": "t1kwytx",
|
|
"asset_type": "서버PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "SVR-24008",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "큰길 서비스 문서제작 서버",
|
|
"current_dept": "천지인",
|
|
"previous_dept": "-",
|
|
"location": "단지설계셀",
|
|
"manager_primary": "손원일",
|
|
"manager_secondary": "김종석",
|
|
"ip_address": "172.16.10.58",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "ASUS PRIME B365M-K",
|
|
"os": "Windows 11 Ent (-)",
|
|
"cpu": "Intel(R) Core(TM) i7-9700 CPU @3.00GHz (8 CPUs)",
|
|
"ram": "32",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_8",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "큰길 운영서버#3",
|
|
"mac_address": "00:1A:2B:3C:5E:08",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 56,
|
|
"ram_usage": 78,
|
|
"network_traffic": "558 GB"
|
|
},
|
|
{
|
|
"id": "xqargcv",
|
|
"asset_type": "서버PC",
|
|
"purchase_corp": "장헌",
|
|
"asset_code": "SVR-24009",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "큰길 서비스 문서제작 서버",
|
|
"current_dept": "천지인",
|
|
"previous_dept": "-",
|
|
"location": "단지설계셀",
|
|
"manager_primary": "손원일",
|
|
"manager_secondary": "김종석",
|
|
"ip_address": "172.16.10.59",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRIME B460M-A",
|
|
"os": "Windows 10 ent (-)",
|
|
"cpu": "Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz, 2904Mhz, 8 코어, 16 논리 프로세서",
|
|
"ram": "32",
|
|
"gpu": "NVIDIA GeForce GTX 1650",
|
|
"ssd_1": "256GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_9",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "큰길 운영서버#4",
|
|
"mac_address": "00:1A:2B:3C:5E:09",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 59,
|
|
"ram_usage": 78,
|
|
"network_traffic": "906 GB"
|
|
},
|
|
{
|
|
"id": "l0vt4w1",
|
|
"asset_type": "서버PC",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "SVR-24010",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "큰길 문서제작 테스트 서버, 큰길 홈페이지 테스트 서버, 큰길 서비스 테스트 서버",
|
|
"current_dept": "천지인",
|
|
"previous_dept": "-",
|
|
"location": "단지설계셀",
|
|
"manager_primary": "손원일",
|
|
"manager_secondary": "김종석",
|
|
"ip_address": "172.16.10.60",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRIME A620M-A",
|
|
"os": "Windows 11 Pro (-)",
|
|
"cpu": "AMD Ryzen 5 7500F 6-Core Processor(3.70 GHz)",
|
|
"ram": "32",
|
|
"gpu": "AMD Radeon RX 580 2048SP",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_10",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "큰길 테스트 서버",
|
|
"mac_address": "00:1A:2B:3C:5E:0A",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 51,
|
|
"ram_usage": 74,
|
|
"network_traffic": "1425 GB"
|
|
},
|
|
{
|
|
"id": "1arz71r",
|
|
"asset_type": "랙마운트 스토리지",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "SVR-24011",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "HmMapService 2.0 스토리지",
|
|
"current_dept": "천지인",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "강명진",
|
|
"manager_secondary": "백순철",
|
|
"ip_address": "172.16.10.61",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Promise Vess R3604fiS (36.67 TB RAID 6 (48 TB RAW))",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_11",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "HmMapService 2.0 스토리지",
|
|
"mac_address": "00:1A:2B:3C:5E:0B",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 19,
|
|
"ram_usage": 47,
|
|
"network_traffic": "304 GB"
|
|
},
|
|
{
|
|
"id": "yw7u61y",
|
|
"asset_type": "서버PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "SVR-24012",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "유니티 개발서버",
|
|
"current_dept": "Infra Solution 개발",
|
|
"previous_dept": "-",
|
|
"location": "Infra Solution 개발",
|
|
"manager_primary": "김재현",
|
|
"manager_secondary": "박경빈",
|
|
"ip_address": "172.16.10.62",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_12",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "개발PC",
|
|
"mac_address": "00:1A:2B:3C:5E:0C",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 44,
|
|
"ram_usage": 38,
|
|
"network_traffic": "309 GB"
|
|
},
|
|
{
|
|
"id": "oedpqak",
|
|
"asset_type": "타워형",
|
|
"purchase_corp": "한라",
|
|
"asset_code": "SVR-24013",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "Way AI 서버, RoadWay 개발서버,",
|
|
"current_dept": "Infra Solution 개발",
|
|
"previous_dept": "-",
|
|
"location": "Infra Solution 개발",
|
|
"manager_primary": "문남연",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.63",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_13",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "RoadWay 서버",
|
|
"mac_address": "00:1A:2B:3C:5E:0D",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 21,
|
|
"ram_usage": 37,
|
|
"network_traffic": "267 GB"
|
|
},
|
|
{
|
|
"id": "eqvrhw2",
|
|
"asset_type": "서버PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "SVR-24014",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "개발 소스코드 서버 (구조물 S/W ,그래픽스개발_HMEG.천지인)",
|
|
"current_dept": "Infra Solution 개발",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "문남연",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.64",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "Dell EMC PowerEdge T380",
|
|
"os": "CentOS Linux 7 (Core) (-)",
|
|
"cpu": "Intel(R) Xeon(R) E-2324G CPU @ 3.10GHz",
|
|
"ram": "16GB",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_14",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "공통 GIT 서버",
|
|
"mac_address": "00:1A:2B:3C:5E:0E",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 40,
|
|
"ram_usage": 26,
|
|
"network_traffic": "52 GB"
|
|
},
|
|
{
|
|
"id": "u534ivy",
|
|
"asset_type": "테스트 PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "SVR-24015",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "구조물 SW SaaS 버전 개발을 위한 테스트 PC",
|
|
"current_dept": "구조물 SW 개발",
|
|
"previous_dept": "-",
|
|
"location": "구조물 SW팀",
|
|
"manager_primary": "김세열",
|
|
"manager_secondary": "이인우",
|
|
"ip_address": "172.16.10.65",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "HP 81C",
|
|
"os": "Windows 10 Pro (22H2)",
|
|
"cpu": "Intel(R) Xeon(R) Gold 6248R CPU",
|
|
"ram": "64GB",
|
|
"gpu": "NVIDIA Quadro P400 (2GB)",
|
|
"ssd_1": "1.86TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_15",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "SaaS 테스트 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:0F",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 44,
|
|
"ram_usage": 71,
|
|
"network_traffic": "854 GB"
|
|
},
|
|
{
|
|
"id": "rhk8097",
|
|
"asset_type": "공용PC",
|
|
"purchase_corp": "장헌",
|
|
"asset_code": "SVR-24016",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "Strana 개발팀 FTP, Git 서버, StranaCore , CFDCore 개발 테스트 PC",
|
|
"current_dept": "Strana 개발",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "김경종",
|
|
"manager_secondary": "마르코",
|
|
"ip_address": "172.16.10.66",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "ASUS B150M",
|
|
"os": "Windows 10 pro (22H2)",
|
|
"cpu": "Intel(R) Core(TM) i7-7700",
|
|
"ram": "32GB",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_16",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "Strana 공용 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:10",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 29,
|
|
"ram_usage": 40,
|
|
"network_traffic": "271 GB"
|
|
},
|
|
{
|
|
"id": "fsulffw",
|
|
"asset_type": "테스트 PC",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "SVR-24017",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "StranaCore , CFDCore 개발 테스트 PC",
|
|
"current_dept": "Strana 개발",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "마르코",
|
|
"manager_secondary": "김경종",
|
|
"ip_address": "172.16.10.67",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "ASUS ROG MAXIMUS Z790 HERO",
|
|
"os": "Windows 11 Pro (25H2)",
|
|
"cpu": "13th Gen Intel(R) Core(TM) i9-13900KS",
|
|
"ram": "128GB",
|
|
"gpu": "NVIDIA RTX A4500 x2",
|
|
"ssd_1": "12TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_17",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "CFDCore 테스트 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:11",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 45,
|
|
"ram_usage": 21,
|
|
"network_traffic": "279 GB"
|
|
},
|
|
{
|
|
"id": "wemy0q6",
|
|
"asset_type": "테스트 PC",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "SVR-24018",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "Abaqus 해석용 PC, Abaqus 정품 설치",
|
|
"current_dept": "Strana 개발",
|
|
"previous_dept": "-",
|
|
"location": "Strana개발팀",
|
|
"manager_primary": "김경종",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.68",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "ASUS PRIME H610M-D D4",
|
|
"os": "Windows 10 Enterprise (22H2)",
|
|
"cpu": "12th Gen Intel(R) Core(TM) i7-12700F",
|
|
"ram": "32GB",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_18",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "Abaqus PC 1",
|
|
"mac_address": "00:1A:2B:3C:5E:12",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 80,
|
|
"ram_usage": 86,
|
|
"network_traffic": "302 GB"
|
|
},
|
|
{
|
|
"id": "x5xbg3g",
|
|
"asset_type": "테스트 PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "SVR-24019",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "Abaqus 해석용 PC",
|
|
"current_dept": "Strana 개발",
|
|
"previous_dept": "-",
|
|
"location": "Strana개발팀",
|
|
"manager_primary": "김경종",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.69",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "ASUS PRIME B450M-A",
|
|
"os": "Windows 11 Enterprise (24H2)",
|
|
"cpu": "AMD Ryzen 7 2700X",
|
|
"ram": "32GB",
|
|
"gpu": "NVIDIA GeForce RTX 2070",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_19",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "Abaqus PC 2",
|
|
"mac_address": "00:1A:2B:3C:5E:13",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 80,
|
|
"ram_usage": 93,
|
|
"network_traffic": "91 GB"
|
|
},
|
|
{
|
|
"id": "c6boq64",
|
|
"asset_type": "테스트 PC",
|
|
"purchase_corp": "한라",
|
|
"asset_code": "SVR-24020",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "Abaqus 해석용 PC",
|
|
"current_dept": "Strana 개발",
|
|
"previous_dept": "-",
|
|
"location": "Strana개발팀",
|
|
"manager_primary": "김경종",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.70",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "ASUS PRIME H410M-A",
|
|
"os": "Windows 10 Enterprise (22H2)",
|
|
"cpu": "Intel(R) Core(TM) i5-10400",
|
|
"ram": "16GB",
|
|
"gpu": "NVIDIA GeForce GTX 1050 Ti",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_20",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "Abaqus PC 3",
|
|
"mac_address": "00:1A:2B:3C:5E:14",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 86,
|
|
"ram_usage": 82,
|
|
"network_traffic": "48 GB"
|
|
},
|
|
{
|
|
"id": "2m767fm",
|
|
"asset_type": "테스트 PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "SVR-24021",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "Abaqus 해석용 PC",
|
|
"current_dept": "Strana 개발",
|
|
"previous_dept": "-",
|
|
"location": "Strana개발팀",
|
|
"manager_primary": "김경종",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.71",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "ASUS PRIME B365m-K",
|
|
"os": "Windows 10 Pro (22H2)",
|
|
"cpu": "Intel(R) Core(TM) i7-9700",
|
|
"ram": "48GB",
|
|
"gpu": "-",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_21",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "Abaqus PC 4",
|
|
"mac_address": "00:1A:2B:3C:5E:15",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 73,
|
|
"ram_usage": 90,
|
|
"network_traffic": "86 GB"
|
|
},
|
|
{
|
|
"id": "fdjeigv",
|
|
"asset_type": "테스트 PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "SVR-24022",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "EG-BIM Drawer 개발을 위한 오토캐드 비교 테스트 PC",
|
|
"current_dept": "그래픽스 개발",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "최준영",
|
|
"manager_secondary": "김근형",
|
|
"ip_address": "172.16.10.72",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "ASUS PRIME B450M-A II",
|
|
"os": "Windows 10 pro (22H2)",
|
|
"cpu": "AMD Ryzen 9 3900X 12-Core Processor, 3793Mhz",
|
|
"ram": "32GB",
|
|
"gpu": "NVIDIA GeForce RTX 3060",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_22",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "오토캐드 테스트 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:16",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 30,
|
|
"ram_usage": 21,
|
|
"network_traffic": "185 GB"
|
|
},
|
|
{
|
|
"id": "7levxyb",
|
|
"asset_type": "테스트 PC",
|
|
"purchase_corp": "장헌",
|
|
"asset_code": "SVR-24023",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "HmEG 엔진 기능 테스트 PC",
|
|
"current_dept": "그래픽스 개발",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "백승민",
|
|
"manager_secondary": "김명식",
|
|
"ip_address": "172.16.10.73",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10 Pro (22H2)",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_23",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "HmEG 테스트 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:17",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 32,
|
|
"ram_usage": 47,
|
|
"network_traffic": "223 GB"
|
|
},
|
|
{
|
|
"id": "vibil40",
|
|
"asset_type": "코드서명인증용 PC",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "SVR-24024",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "응용프로그램 실행파일 및 라이브러리에 대한 디지털 서명 PC",
|
|
"current_dept": "그래픽스 개발",
|
|
"previous_dept": "-",
|
|
"location": "센터 사무실",
|
|
"manager_primary": "한성일",
|
|
"manager_secondary": "이민규",
|
|
"ip_address": "172.16.10.74",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRIME B360M-K",
|
|
"os": "Windows 10 Pro (22H2)",
|
|
"cpu": "16GB",
|
|
"ram": "NVIDIA GeForce GTX 1070",
|
|
"gpu": "500GB",
|
|
"ssd_1": "-",
|
|
"ssd_2": "2TB",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_24",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "코드서명인증 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:18",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 16,
|
|
"ram_usage": 41,
|
|
"network_traffic": "254 GB"
|
|
},
|
|
{
|
|
"id": "7w8n1nc",
|
|
"asset_type": "테스트PC(가상화_DB)",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "SVR-24025",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "외주 한국종합엔지니어링 페이지 개발을 위한 테스트 PC [(구)가평 VM 원격 PC의 가상화]",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "가상화",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.75",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows Server 2008 (-)",
|
|
"cpu": "Intel(R) core(TM) i5-3550 CPU @ 3.30GHz 3.29Ghz",
|
|
"ram": "4GB",
|
|
"gpu": "-",
|
|
"ssd_1": "128GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_25",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "한종 테스트 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:19",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 86,
|
|
"ram_usage": 86,
|
|
"network_traffic": "1671 GB"
|
|
},
|
|
{
|
|
"id": "zb2jld7",
|
|
"asset_type": "테스트PC(실물)",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "SVR-24026",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "외주 한국종합엔지니어링 페이지 개발을 위한 테스트 PC // 구형 OS설치(정품 미인증)로 인해 원격 및 로컬접근 불가 // 개발 종료 이후 철수예정",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.76",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_26",
|
|
"memo": "방치 의심 장비 (회수 필요)",
|
|
"asset_name": "한종 테스트 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:1A",
|
|
"hw_status": "수리/대기",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": true,
|
|
"cpu_usage": 0,
|
|
"ram_usage": 0,
|
|
"network_traffic": "0 GB (N/A)"
|
|
},
|
|
{
|
|
"id": "ygyukzr",
|
|
"asset_type": "테스트PC",
|
|
"purchase_corp": "한라",
|
|
"asset_code": "SVR-24027",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "장헌,PTC 안전관리 개발 테스트 PC 및 산하 인트라넷 개발 테스트 PC",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.77",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10 Pro (22H2)",
|
|
"cpu": "AMD Ryzen 7 1800X Eight-Core Processor 3.60Ghz",
|
|
"ram": "16GB",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ssd_1": "512GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_27",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "안전관리 테스트 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:1B",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 20,
|
|
"ram_usage": 38,
|
|
"network_traffic": "148 GB"
|
|
},
|
|
{
|
|
"id": "azsn9x8",
|
|
"asset_type": "공용PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "SVR-24028",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "(구) 공간정보 PC / (현) WallZainer 테스트 및 맨아워 테스트 PC",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.78",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10 Pro (22H2)",
|
|
"cpu": "Intel(R) Core(TM) i5-10400 CPU @ 2.90GHz",
|
|
"ram": "16GB",
|
|
"gpu": "Intel(R) UHD Graphics 630",
|
|
"ssd_1": "256GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_28",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "(구)공간정보 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:1C",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 32,
|
|
"ram_usage": 38,
|
|
"network_traffic": "149 GB"
|
|
},
|
|
{
|
|
"id": "iyh24gd",
|
|
"asset_type": "공용PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "SVR-24029",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "(구) 가평 상하수도 원격 PC",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.79",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 11 (-)",
|
|
"cpu": "Intel(R) Core(TM) i5-3550 CPU @ 3.30GHz",
|
|
"ram": "16GB",
|
|
"gpu": "Intel(R) HD Graphics",
|
|
"ssd_1": "128GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_29",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "(구)가평 VM 원격 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:1D",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 44,
|
|
"ram_usage": 32,
|
|
"network_traffic": "89 GB"
|
|
},
|
|
{
|
|
"id": "92is22f",
|
|
"asset_type": "테스트PC",
|
|
"purchase_corp": "장헌",
|
|
"asset_code": "SVR-24030",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "(구) 최하림 연구원 PC / (현) AI 개발 테스트 PC",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.80",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 11 Pro (25H2)",
|
|
"cpu": "AMD Ryzen 7 7800X3D 8-Core Processor (4.20GHz)",
|
|
"ram": "64GB",
|
|
"gpu": "NVIDIA GeForce RTX 4070 SUPER (12GB)",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_30",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "AI 개발 서버",
|
|
"mac_address": "00:1A:2B:3C:5E:1E",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 22,
|
|
"ram_usage": 23,
|
|
"network_traffic": "165 GB"
|
|
},
|
|
{
|
|
"id": "1ilteou",
|
|
"asset_type": "공용PC",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "SVR-24031",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "모든 IDC서버, NAS 관리",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "IDC",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.81",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_31",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "IDC 서버들",
|
|
"mac_address": "00:1A:2B:3C:5E:1F",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 41,
|
|
"ram_usage": 24,
|
|
"network_traffic": "269 GB"
|
|
},
|
|
{
|
|
"id": "y5t0tp5",
|
|
"asset_type": "서버",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "SVR-24032",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "한종 리뉴얼 메뉴 개발서버",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.82",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "DL380 GEN10",
|
|
"os": "Windows Server 2019 (-)",
|
|
"cpu": "Intel Xeon(R) Silver 4208 CPU @ 2.10GHz",
|
|
"ram": "128GB",
|
|
"gpu": "-",
|
|
"ssd_1": "300GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1.88TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_32",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "한종 개발서버",
|
|
"mac_address": "00:1A:2B:3C:5E:20",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 44,
|
|
"ram_usage": 40,
|
|
"network_traffic": "76 GB"
|
|
},
|
|
{
|
|
"id": "swuhwpw",
|
|
"asset_type": "서버",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "SVR-24033",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "MyStation & 전화기 운영서버",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.83",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_33",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "MyStation 운영 서버",
|
|
"mac_address": "00:1A:2B:3C:5E:21",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 93,
|
|
"ram_usage": 93,
|
|
"network_traffic": "808 GB"
|
|
},
|
|
{
|
|
"id": "p0ma56d",
|
|
"asset_type": "서버",
|
|
"purchase_corp": "한라",
|
|
"asset_code": "SVR-24034",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "한라 제외 각 자회사 소스 백업서버",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.84",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "IBM x3350 M2",
|
|
"os": "Windows Server 2012R2 (6.3.9600)",
|
|
"cpu": "Xeon(R) CPU E5520 @ 2.27GHz 2.26GHz",
|
|
"ram": "4GB",
|
|
"gpu": "-",
|
|
"ssd_1": "135GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "17.2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_34",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "백업 서버",
|
|
"mac_address": "00:1A:2B:3C:5E:22",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 30,
|
|
"ram_usage": 31,
|
|
"network_traffic": "230 GB"
|
|
},
|
|
{
|
|
"id": "7ugdxps",
|
|
"asset_type": "서버",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "SVR-24035",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "한라 소스 백업서버",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.85",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "Supermicro",
|
|
"os": "Windows Server 2019 (10.0.17763)",
|
|
"cpu": "Intel Xeon(R) Silver 4210 CPU @ 2.20GHz",
|
|
"ram": "16GB",
|
|
"gpu": "-",
|
|
"ssd_1": "300GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "30TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_35",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "한라 백업서버",
|
|
"mac_address": "00:1A:2B:3C:5E:23",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 41,
|
|
"ram_usage": 26,
|
|
"network_traffic": "121 GB"
|
|
},
|
|
{
|
|
"id": "eebhxop",
|
|
"asset_type": "서버",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "SVR-24036",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "(구)XR 프로젝트 Was 서버 / (현) 한맥 전자자료실 서버",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.86",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "DL360 Gen10",
|
|
"os": "Windows Server 2019 (10.0.17763)",
|
|
"cpu": "Intel Xeon(R) Silver 4214R CPU @ 2.40GHz",
|
|
"ram": "32GB",
|
|
"gpu": "-",
|
|
"ssd_1": "280GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "3.3TB",
|
|
"hdd_2": "33.5TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_36",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "XR-WAS",
|
|
"mac_address": "00:1A:2B:3C:5E:24",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 60,
|
|
"ram_usage": 68,
|
|
"network_traffic": "1025 GB"
|
|
},
|
|
{
|
|
"id": "27zwihk",
|
|
"asset_type": "서버",
|
|
"purchase_corp": "장헌",
|
|
"asset_code": "SVR-24037",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "XR 프로젝트 가상화 Main 서버",
|
|
"current_dept": "Web Solution",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "이병권",
|
|
"manager_secondary": "김한결",
|
|
"ip_address": "172.16.10.87",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "DL360 Gen10",
|
|
"os": "Windows Server 2019 (10.0.17763)",
|
|
"cpu": "Intel Xeon(R) Silver 4214R CPU @ 2.40GHz",
|
|
"ram": "32GB",
|
|
"gpu": "-",
|
|
"ssd_1": "280GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "3.3TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_37",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "XR-Main",
|
|
"mac_address": "00:1A:2B:3C:5E:25",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 48,
|
|
"ram_usage": 24,
|
|
"network_traffic": "254 GB"
|
|
},
|
|
{
|
|
"id": "a4hid3x",
|
|
"asset_type": "공용PC/테스트PC",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "SVR-24038",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "유체 시뮬레이션 모델링을 위한 공용 PC",
|
|
"current_dept": "수자원",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 7층",
|
|
"manager_primary": "이은구",
|
|
"manager_secondary": "황호연",
|
|
"ip_address": "172.16.10.88",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRO Z790-A WIFI (MS-7E07)",
|
|
"os": "Windows 10 Pro (22H2)",
|
|
"cpu": "13th Gen Intel(R) Core(TM) i9-13900K (24 CPUs)",
|
|
"ram": "64GB",
|
|
"gpu": "NVIDIA GeForce RTX 4080\r\nIntel(R) UHD Graphics 770",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_38",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "모델링 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:26",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 31,
|
|
"ram_usage": 36,
|
|
"network_traffic": "53 GB"
|
|
},
|
|
{
|
|
"id": "pe1y5a6",
|
|
"asset_type": "렌더링 PC",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "SVR-24039",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "3D 영상 렌더링을 위한 PC",
|
|
"current_dept": "디자인팀",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 6층",
|
|
"manager_primary": "최영환",
|
|
"manager_secondary": "권순호",
|
|
"ip_address": "172.16.10.89",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "Z790 AORUS ELITE AX",
|
|
"os": "Windows 11 (25H2)",
|
|
"cpu": "Intel(R) i9-14900KF (3.20GHz)",
|
|
"ram": "128GB",
|
|
"gpu": "NIVIDA GeForce RTX 4090",
|
|
"ssd_1": "4TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_39",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "영상셀 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:27",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 70,
|
|
"ram_usage": 85,
|
|
"network_traffic": "27 GB"
|
|
},
|
|
{
|
|
"id": "idahevp",
|
|
"asset_type": "테스트 PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "SVR-24040",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "UX/UI 테스트를 위한 PC",
|
|
"current_dept": "디자인팀",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 6층",
|
|
"manager_primary": "채선영",
|
|
"manager_secondary": "김정석",
|
|
"ip_address": "172.16.10.90",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRIME H510M-K B2.0",
|
|
"os": "Windows 10 (22H2)",
|
|
"cpu": "Intel(R) i9-10900 (2.8GHz)",
|
|
"ram": "64GB",
|
|
"gpu": "NIVIDA GeForce RTX 3090",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_40",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "UX셀 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:28",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 33,
|
|
"ram_usage": 39,
|
|
"network_traffic": "247 GB"
|
|
},
|
|
{
|
|
"id": "xraug94",
|
|
"asset_type": "타워형",
|
|
"purchase_corp": "한라",
|
|
"asset_code": "SVR-24041",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "코드관리 /L7 스위치 역할 / 각종 테스트 90개 이상 Docker 구동중",
|
|
"current_dept": "기술기획",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "한치영",
|
|
"manager_secondary": "이태훈",
|
|
"ip_address": "172.16.10.91",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Ubuntu Server (Ubuntu 24.04.4 LTS)",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_41",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "AI-cell-util",
|
|
"mac_address": "00:1A:2B:3C:5E:29",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 49,
|
|
"ram_usage": 22,
|
|
"network_traffic": "291 GB"
|
|
},
|
|
{
|
|
"id": "zkao0y2",
|
|
"asset_type": "타워형",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "SVR-24042",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "A100 GPU 구동용",
|
|
"current_dept": "기술기획",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "한치영",
|
|
"manager_secondary": "이태훈",
|
|
"ip_address": "172.16.10.92",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Ubuntu Server (Ubuntu 24.04.4 LTS)",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_42",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "AI-cell-A100",
|
|
"mac_address": "00:1A:2B:3C:5E:2A",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 17,
|
|
"ram_usage": 32,
|
|
"network_traffic": "157 GB"
|
|
},
|
|
{
|
|
"id": "1cp5dkq",
|
|
"asset_type": "타워형",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "SVR-24043",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "gitea action (CI 테스트 등) 및 인증 테스트용",
|
|
"current_dept": "기술기획",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "한치영",
|
|
"manager_secondary": "이태훈",
|
|
"ip_address": "172.16.10.93",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Ubuntu Server (Ubuntu 24.04.4 LTS)",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_43",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "AI-cell-beps",
|
|
"mac_address": "00:1A:2B:3C:5E:2B",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 21,
|
|
"ram_usage": 41,
|
|
"network_traffic": "99 GB"
|
|
},
|
|
{
|
|
"id": "jqgnday",
|
|
"asset_type": "타워형",
|
|
"purchase_corp": "장헌",
|
|
"asset_code": "SVR-24044",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "gitea action (CI 테스트 등) 및 인증 테스트용",
|
|
"current_dept": "기술기획",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "한치영",
|
|
"manager_secondary": "이태훈",
|
|
"ip_address": "172.16.10.94",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Ubuntu Server (Ubuntu 24.04.4 LTS)",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_44",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "chat-hmac",
|
|
"mac_address": "00:1A:2B:3C:5E:2C",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 45,
|
|
"ram_usage": 21,
|
|
"network_traffic": "246 GB"
|
|
},
|
|
{
|
|
"id": "1be1c30",
|
|
"asset_type": "테스트PC",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "SVR-24045",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "개발 앱 테스트",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "최준호",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.95",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 10 (22H2)",
|
|
"cpu": "Intel(R) Core(TM) i7-9700KF",
|
|
"ram": "16GB",
|
|
"gpu": "NVIDIA GeForce RTX 2060",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "500GB",
|
|
"hdd_1": "8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_45",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "테스트서버",
|
|
"mac_address": "00:1A:2B:3C:5E:2D",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 25,
|
|
"ram_usage": 38,
|
|
"network_traffic": "304 GB"
|
|
},
|
|
{
|
|
"id": "d77klpa",
|
|
"asset_type": "서버랙형",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "SVR-24046",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "프로젝트마스터 스토리지 서버, 터레인 서버, BaseMap서버",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.96",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "DL360 GEN10",
|
|
"os": "Windows Server 2019 (1809)",
|
|
"cpu": "Intel(R) Xeon(R) Silver 4214R CPU",
|
|
"ram": "32GB",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "300GB",
|
|
"hdd_2": "3.5TB",
|
|
"hdd_3": "3.5TB",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_46",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "GSIM서버",
|
|
"mac_address": "00:1A:2B:3C:5E:2E",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 24,
|
|
"ram_usage": 39,
|
|
"network_traffic": "57 GB"
|
|
},
|
|
{
|
|
"id": "hlqt12h",
|
|
"asset_type": "공용PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "SVR-24047",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "GSIM 정사영상 및 BIM 3D모델 데이터 구축",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "박정우",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.97",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "HP Z8 G4 Workstation (81C7)",
|
|
"os": "Windows 10 (22H2)",
|
|
"cpu": "Intel(R) Xeon(R) Gold 6136",
|
|
"ram": "128GB",
|
|
"gpu": "NVIDIA Quadro P2200",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "8TB",
|
|
"hdd_3": "8TB",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_47",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "언리얼서버",
|
|
"mac_address": "00:1A:2B:3C:5E:2F",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 36,
|
|
"ram_usage": 35,
|
|
"network_traffic": "176 GB"
|
|
},
|
|
{
|
|
"id": "u9smwy5",
|
|
"asset_type": "공용PC",
|
|
"purchase_corp": "한라",
|
|
"asset_code": "SVR-24048",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "프로젝트마스터 컨버터(PDF) 서버",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "박지은",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.98",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "MAG Z690 TOMAHAWK WIFI DDR4 (MS-7D32)",
|
|
"os": "Windows 10 (22H2)",
|
|
"cpu": "12th Gen Intel(R) Core(TM) i9-12900K",
|
|
"ram": "128GB",
|
|
"gpu": "NVIDIA GeForece RTX 3090",
|
|
"ssd_1": "4TB",
|
|
"ssd_2": "10TB",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_48",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "빌드서버",
|
|
"mac_address": "00:1A:2B:3C:5E:30",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 24,
|
|
"ram_usage": 30,
|
|
"network_traffic": "53 GB"
|
|
},
|
|
{
|
|
"id": "prvuwas",
|
|
"asset_type": "서버랙형",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "SVR-24049",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "이전 프로젝트마스터 서버 구동",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "손제근",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.99",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "DL360 GEN10",
|
|
"os": "Windows Server 2019 (1809)",
|
|
"cpu": "Intel(R) Xeon(R) Silver 4214R CPU",
|
|
"ram": "32GB",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "300GB",
|
|
"hdd_2": "3.5TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_49",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "META서버",
|
|
"mac_address": "00:1A:2B:3C:5E:31",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 33,
|
|
"ram_usage": 36,
|
|
"network_traffic": "259 GB"
|
|
},
|
|
{
|
|
"id": "rqxpfkw",
|
|
"asset_type": "서버랙형",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "SVR-24050",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "함양합천서버, GSIM 웹서비스, 프로젝트마스터 웹서비스",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "민홍",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.100",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "DL380 GEN10",
|
|
"os": "Windows Server 2019 (1809)",
|
|
"cpu": "Intel(R) Xeon(R) Silver 4208 CPU",
|
|
"ram": "96GB",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "600GB",
|
|
"hdd_2": "10.3TB",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_50",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "함양합천서버",
|
|
"mac_address": "00:1A:2B:3C:5E:32",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 63,
|
|
"ram_usage": 60,
|
|
"network_traffic": "1117 GB"
|
|
},
|
|
{
|
|
"id": "jrhabxz",
|
|
"asset_type": "서버랙형",
|
|
"purchase_corp": "장헌",
|
|
"asset_code": "SVR-24051",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "스마트건설 R&D 웹서비스",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "MDF실",
|
|
"manager_primary": "기윤서",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.101",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "DL360 GEN10",
|
|
"os": "Windows Server 2019 (1809)",
|
|
"cpu": "Intel(R) Xeon(R) Silver 4214R CPU",
|
|
"ram": "64GB",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "300GB",
|
|
"hdd_2": "3.2TB",
|
|
"hdd_3": "16.3TB",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_51",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "스마트건설서버",
|
|
"mac_address": "00:1A:2B:3C:5E:33",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 62,
|
|
"ram_usage": 74,
|
|
"network_traffic": "1127 GB"
|
|
},
|
|
{
|
|
"id": "y3c7q3q",
|
|
"asset_type": "클라우드 서버",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "SVR-24052",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "PM CLOUD 서버",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "아마존 AWS EC2",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.102",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "m5.large",
|
|
"os": "Windows Server 2025 (24H2)",
|
|
"cpu": "Intel(R) Xeon(R) Platinum 8259 CPU",
|
|
"ram": "8GB",
|
|
"gpu": "-",
|
|
"ssd_1": "50GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_52",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "PM CLOUD 서버",
|
|
"mac_address": "00:1A:2B:3C:5E:34",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 50,
|
|
"ram_usage": 61,
|
|
"network_traffic": "1210 GB"
|
|
},
|
|
{
|
|
"id": "gaqo7w9",
|
|
"asset_type": "클라우드 서버",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "SVR-24053",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "GSIM CLOUD 서버",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "아마존 AWS EC2",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.103",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "t3.large",
|
|
"os": "Windows Server 2025 (24H2)",
|
|
"cpu": "Intel(R) Xeon(R) Platinum 8259 CPU",
|
|
"ram": "8GB",
|
|
"gpu": "-",
|
|
"ssd_1": "50GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_53",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "GSIM CLOUD 서버",
|
|
"mac_address": "00:1A:2B:3C:5E:35",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 52,
|
|
"ram_usage": 78,
|
|
"network_traffic": "764 GB"
|
|
},
|
|
{
|
|
"id": "uc1cofv",
|
|
"asset_type": "클라우드 서버",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "SVR-24054",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "CFS, BCMF CLOUD 서버",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "아마존 AWS EC2",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.104",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "t3.large",
|
|
"os": "Windows Server 2022 (21H2)",
|
|
"cpu": "Intel(R) Xeon(R) Platinum 8259 CPU",
|
|
"ram": "8GB",
|
|
"gpu": "-",
|
|
"ssd_1": "100GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_54",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "CFS, BCMF CLOUD 서버",
|
|
"mac_address": "00:1A:2B:3C:5E:36",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 9,
|
|
"ram_usage": 11,
|
|
"network_traffic": "1.1 GB"
|
|
},
|
|
{
|
|
"id": "ak21xfd",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "한라",
|
|
"asset_code": "SVR-24055",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 3층",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.105",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_55",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "3B 회의실 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:37",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 9,
|
|
"ram_usage": 17,
|
|
"network_traffic": "0.7 GB"
|
|
},
|
|
{
|
|
"id": "otwer75",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "SVR-24056",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 5층",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.106",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "Intel(R) Core(TM) i9-12900K CPU",
|
|
"ram": "-",
|
|
"gpu": "NVIDIA GeForce RTX 3090 Ti",
|
|
"ssd_1": "1TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_56",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "5B 회의실 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:38",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 11,
|
|
"ram_usage": 10,
|
|
"network_traffic": "0.5 GB"
|
|
},
|
|
{
|
|
"id": "vd15fg0",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "SVR-24057",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 6층",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.107",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "Intel(R) Xeon(R) W-1250P CPU @ 4.10Ghz",
|
|
"ram": "-",
|
|
"gpu": "NVIDIA Quadro P620",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "2TB",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_57",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "6층 대회의실 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:39",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 7,
|
|
"ram_usage": 16,
|
|
"network_traffic": "0.7 GB"
|
|
},
|
|
{
|
|
"id": "i909fhg",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "장헌",
|
|
"asset_code": "SVR-24058",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 6층",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.108",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "-",
|
|
"ram": "32",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_58",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "6층 소회의실A PC",
|
|
"mac_address": "00:1A:2B:3C:5E:3A",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 2,
|
|
"ram_usage": 7,
|
|
"network_traffic": "1.6 GB"
|
|
},
|
|
{
|
|
"id": "wzfwwcw",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "SVR-24059",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 6층",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.109",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "AMD Ryzen 9 5950X",
|
|
"ram": "32",
|
|
"gpu": "NVIDIA GeForce RTX 3090 Ti",
|
|
"ssd_1": "2TB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_59",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "6층 소회의실B PC",
|
|
"mac_address": "00:1A:2B:3C:5E:3B",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 2,
|
|
"ram_usage": 6,
|
|
"network_traffic": "0.4 GB"
|
|
},
|
|
{
|
|
"id": "6157j4h",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "SVR-24060",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 7층",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.110",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "Intel(R) Core(TM) i7-6700 CPU @ 3.40Ghz",
|
|
"ram": "-",
|
|
"gpu": "NVIDIA GeForce RTX 2060 SUPER",
|
|
"ssd_1": "500",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_60",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "7층 대회의실 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:3C",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 6,
|
|
"ram_usage": 7,
|
|
"network_traffic": "1.0 GB"
|
|
},
|
|
{
|
|
"id": "n1vrcqs",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "SVR-24061",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 7층",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.111",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "Intel(R) Core(TM) i7-8700 CPU @ 3.20Ghz",
|
|
"ram": "128",
|
|
"gpu": "NVIDIA Quadro P400",
|
|
"ssd_1": "250",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_61",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "7층 소회의실 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:3D",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 3,
|
|
"ram_usage": 9,
|
|
"network_traffic": "0.6 GB"
|
|
},
|
|
{
|
|
"id": "ryou7lf",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "한라",
|
|
"asset_code": "SVR-24062",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 파고라",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.112",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "사내 표준 공용PC",
|
|
"os": "Windows 10",
|
|
"cpu": "Intel(R) Core(TM) i9-13900K CPU",
|
|
"ram": "16",
|
|
"gpu": "NVIDIA GeForce RTX 4090",
|
|
"ssd_1": "250GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_62",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "파고라 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:3E",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 6,
|
|
"ram_usage": 12,
|
|
"network_traffic": "1.3 GB"
|
|
},
|
|
{
|
|
"id": "8pdpgeg",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "SVR-24063",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "기술개발센터 2번회의실",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.113",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 10 pro (22H2)",
|
|
"cpu": "Intel(R) Core(TM) i5-8500 CPU @ 3.00GHz",
|
|
"ram": "16",
|
|
"gpu": "NVIDIA GeForce GTX 1650",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_63",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "회의실2 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:3F",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 8,
|
|
"ram_usage": 10,
|
|
"network_traffic": "0.9 GB"
|
|
},
|
|
{
|
|
"id": "w3putkf",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "삼안",
|
|
"asset_code": "SVR-24064",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "기술개발센터 3번회의실",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.114",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRIME B250M-A",
|
|
"os": "Windows 10 pro (22H2)",
|
|
"cpu": "Intel(R) Core(TM) i7-7700 CPU @ 3.60Ghz",
|
|
"ram": "16",
|
|
"gpu": "NVIDIA GeForce GTX 1070",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "1TB",
|
|
"hdd_1": "1.8TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_64",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "회의실3 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:40",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 6,
|
|
"ram_usage": 8,
|
|
"network_traffic": "1.1 GB"
|
|
},
|
|
{
|
|
"id": "crebben",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "장헌",
|
|
"asset_code": "SVR-24065",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "기술개발센터 5번회의실",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.115",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRIME B350M-A",
|
|
"os": "Windows 10 pro (22H2)",
|
|
"cpu": "AMD Ryzen 7 1800X Eight-Core Processor",
|
|
"ram": "32",
|
|
"gpu": "NVIDIA GeForce GTX 1050",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "-",
|
|
"hdd_1": "1TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_65",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "회의실5 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:41",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 7,
|
|
"ram_usage": 14,
|
|
"network_traffic": "1.3 GB"
|
|
},
|
|
{
|
|
"id": "4q47y0x",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "SVR-24066",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "기술개발센터 6번회의실",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.116",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRIME B350M-K",
|
|
"os": "Windows 10 pro (22H2)",
|
|
"cpu": "Intel(R) Core(TM) i7-9700K CPU @ 3.60 Ghz",
|
|
"ram": "16",
|
|
"gpu": "NVIDIA GeForce GTX 1070",
|
|
"ssd_1": "500GB",
|
|
"ssd_2": "2TB",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_66",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "회의실6 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:42",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 7,
|
|
"ram_usage": 10,
|
|
"network_traffic": "0.3 GB"
|
|
},
|
|
{
|
|
"id": "4iv7wr8",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "SVR-24067",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "기술개발센터 7번회의실",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.117",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PRIME B365M-K",
|
|
"os": "Windows 10 Enterprise (22H2)",
|
|
"cpu": "Intel(R) Core(TM) i7-9700KF CPU @ 3.60 Ghz",
|
|
"ram": "32",
|
|
"gpu": "NVIDIA GeForce RTX 2060",
|
|
"ssd_1": "4TB",
|
|
"ssd_2": "2TB",
|
|
"hdd_1": "2TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_67",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "회의실7 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:43",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 7,
|
|
"ram_usage": 16,
|
|
"network_traffic": "1.4 GB"
|
|
},
|
|
{
|
|
"id": "voxga62",
|
|
"asset_type": "회의실 PC",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "SVR-24068",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "-",
|
|
"current_dept": "회의실",
|
|
"previous_dept": "-",
|
|
"location": "기술개발센터 사이니지룸",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.118",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "TUF GAMING B550-PLUS",
|
|
"os": "Windows 10 pro (22H2)",
|
|
"cpu": "AMD Ryzen 9 5900X 12-core Processor",
|
|
"ram": "128",
|
|
"gpu": "NVIDIA GeForce RTX 3090 Ti",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "3500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_68",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "사이니지룸 PC",
|
|
"mac_address": "00:1A:2B:3C:5E:44",
|
|
"hw_status": "운영중",
|
|
"service_type": "회의용/공용",
|
|
"is_inactive": false,
|
|
"cpu_usage": 9,
|
|
"ram_usage": 7,
|
|
"network_traffic": "0.2 GB"
|
|
}
|
|
];
|
|
|
|
export const dummyStorages: any[] = [
|
|
{
|
|
"id": "dwrxncs",
|
|
"asset_type": "NAS",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "STO-24000",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "전세계 터레인, 전세계 배경지도, 전국 정사영상 자료 저장",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "이호성",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.10.95",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "20TB",
|
|
"os": "AMD Ryzen R1600 (20TB)",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_45",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "GSIM NAS",
|
|
"mac_address": "00:1A:2B:3C:5E:2D",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 37,
|
|
"ram_usage": 45,
|
|
"network_traffic": "301 GB",
|
|
"volume": "10TB"
|
|
},
|
|
{
|
|
"id": "wg2dii6",
|
|
"asset_type": "DAS",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "STO-24001",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "전세계 터레인, 전세계 배경지도, 전국 정사영상 자료 저장",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "이호성",
|
|
"manager_secondary": "최준호",
|
|
"ip_address": "172.16.10.102",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PROMISE Vess R3604fi",
|
|
"os": "Windows 10",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "36TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_52",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "GSIM DAS",
|
|
"mac_address": "00:1A:2B:3C:5E:34",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 43,
|
|
"ram_usage": 24,
|
|
"network_traffic": "114 GB",
|
|
"volume": "36TB"
|
|
},
|
|
{
|
|
"id": "bh6cbt2",
|
|
"asset_type": "NAS",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "STO-24002",
|
|
"purchase_date": "2023-03",
|
|
"asset_purpose": "CLOUD R2 데이터 백업",
|
|
"current_dept": "GSIM",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "이호성",
|
|
"manager_secondary": "민홍",
|
|
"ip_address": "172.16.10.102",
|
|
"remote_tool": "RDP / VNC",
|
|
"model_name": "PROMISE Vess R3604fi",
|
|
"os": "Windows 10",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "36TB",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "대상",
|
|
"purchase_amount": "1500000",
|
|
"purchase_vendor": "다나와",
|
|
"approval_document": "2023_공용PC_도입_52",
|
|
"memo": "정상 운영 장비",
|
|
"asset_name": "GSIM NAS",
|
|
"mac_address": "00:1A:2B:3C:5E:34",
|
|
"hw_status": "운영중",
|
|
"service_type": "외부서비스",
|
|
"is_inactive": false,
|
|
"cpu_usage": 86,
|
|
"ram_usage": 88,
|
|
"network_traffic": "1761 GB",
|
|
"volume": "36TB"
|
|
},
|
|
{
|
|
"id": "1r4hiov",
|
|
"asset_type": "유형",
|
|
"purchase_corp": "장헌산업",
|
|
"asset_code": "STO-24003",
|
|
"purchase_date": "2022-08",
|
|
"asset_purpose": "상세",
|
|
"current_dept": "팀명",
|
|
"previous_dept": "-",
|
|
"location": "위치",
|
|
"manager_primary": "담당자(정)",
|
|
"manager_secondary": "담당자(부)",
|
|
"ip_address": "IP",
|
|
"remote_tool": "원격 접속도구",
|
|
"model_name": "메인보드/모델명",
|
|
"os": "OS(에디션) 버전",
|
|
"cpu": "CPU",
|
|
"ram": "RAM",
|
|
"gpu": "GPU",
|
|
"ssd_1": "SSD1",
|
|
"ssd_2": "SSD2",
|
|
"hdd_1": "HDD1",
|
|
"hdd_2": "HDD2",
|
|
"hdd_3": "HDD3",
|
|
"hdd_4": "HDD4",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "4500000",
|
|
"purchase_vendor": "시놀로지 총판",
|
|
"approval_document": "2022_스토리지_도입_3",
|
|
"memo": "스토리지 서버 공유 자산",
|
|
"asset_name": "자산명",
|
|
"mac_address": "00:1A:2B:3C:5F:03",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"volume": "HDD1",
|
|
"cpu_usage": 17,
|
|
"ram_usage": 60,
|
|
"network_traffic": "612 GB"
|
|
},
|
|
{
|
|
"id": "rc5so7y",
|
|
"asset_type": "공용 NAS",
|
|
"purchase_corp": "PTC",
|
|
"asset_code": "STO-24004",
|
|
"purchase_date": "2022-08",
|
|
"asset_purpose": "그래픽스 개발팀의 데이터 백업 및 도커용 Tool 운영",
|
|
"current_dept": "그래픽스 개발",
|
|
"previous_dept": "-",
|
|
"location": "센터 서버실",
|
|
"manager_primary": "최준영",
|
|
"manager_secondary": "김민성",
|
|
"ip_address": "http://172.16.42.99/",
|
|
"remote_tool": "웹",
|
|
"model_name": "Synology 공용 NAS",
|
|
"os": "DSM DSM 7.3.2-86009 Update 3",
|
|
"cpu": "AMD Ryzen R1600",
|
|
"ram": "32GB",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "16TB",
|
|
"hdd_2": "16TB (미러링)",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "4500000",
|
|
"purchase_vendor": "시놀로지 총판",
|
|
"approval_document": "2022_스토리지_도입_4",
|
|
"memo": "스토리지 서버 공유 자산",
|
|
"asset_name": "데이터 스토리지",
|
|
"mac_address": "00:1A:2B:3C:5F:04",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"volume": "16TB",
|
|
"cpu_usage": 36,
|
|
"ram_usage": 62,
|
|
"network_traffic": "254 GB"
|
|
},
|
|
{
|
|
"id": "sz9iqsa",
|
|
"asset_type": "NAS 서버",
|
|
"purchase_corp": "바론",
|
|
"asset_code": "STO-24005",
|
|
"purchase_date": "2022-08",
|
|
"asset_purpose": "디자인팀 실시간 프로젝트 작업 공유 및 최종 결과물 저장",
|
|
"current_dept": "디자인팀",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 B1",
|
|
"manager_primary": "최영환",
|
|
"manager_secondary": "권순호",
|
|
"ip_address": "172.16.10.100",
|
|
"remote_tool": "SMB",
|
|
"model_name": "X",
|
|
"os": "DSM 7.1",
|
|
"cpu": "X",
|
|
"ram": "X",
|
|
"gpu": "X",
|
|
"ssd_1": "X",
|
|
"ssd_2": "X",
|
|
"hdd_1": "10.9TB",
|
|
"hdd_2": "10.9TB",
|
|
"hdd_3": "10.9TB",
|
|
"hdd_4": "10.9TB",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "4500000",
|
|
"purchase_vendor": "시놀로지 총판",
|
|
"approval_document": "2022_스토리지_도입_5",
|
|
"memo": "스토리지 서버 공유 자산",
|
|
"asset_name": "디자인팀 서버(Design)",
|
|
"mac_address": "00:1A:2B:3C:5F:05",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"volume": "10.9TB",
|
|
"cpu_usage": 31,
|
|
"ram_usage": 51,
|
|
"network_traffic": "369 GB"
|
|
},
|
|
{
|
|
"id": "ppqi5lq",
|
|
"asset_type": "NAS 서버",
|
|
"purchase_corp": "한라",
|
|
"asset_code": "STO-24006",
|
|
"purchase_date": "2022-08",
|
|
"asset_purpose": "영상셀 실시간 프로젝트 작업 공유 및 최종 결과물 저장",
|
|
"current_dept": "디자인팀",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 B1",
|
|
"manager_primary": "최영환",
|
|
"manager_secondary": "권순호",
|
|
"ip_address": "172.16.10.99",
|
|
"remote_tool": "SMB",
|
|
"model_name": "X",
|
|
"os": "DSM 7.2.2",
|
|
"cpu": "X",
|
|
"ram": "X",
|
|
"gpu": "X",
|
|
"ssd_1": "X",
|
|
"ssd_2": "X",
|
|
"hdd_1": "10.9TB",
|
|
"hdd_2": "10.9TB",
|
|
"hdd_3": "10.9TB",
|
|
"hdd_4": "10.9TB",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "4500000",
|
|
"purchase_vendor": "시놀로지 총판",
|
|
"approval_document": "2022_스토리지_도입_6",
|
|
"memo": "스토리지 서버 공유 자산",
|
|
"asset_name": "영상셀 서버",
|
|
"mac_address": "00:1A:2B:3C:5F:06",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"volume": "10.9TB",
|
|
"cpu_usage": 24,
|
|
"ram_usage": 54,
|
|
"network_traffic": "578 GB"
|
|
},
|
|
{
|
|
"id": "aenhhii",
|
|
"asset_type": "NAS",
|
|
"purchase_corp": "한맥",
|
|
"asset_code": "STO-24007",
|
|
"purchase_date": "2022-08",
|
|
"asset_purpose": "인사정보NAS",
|
|
"current_dept": "디자인팀",
|
|
"previous_dept": "-",
|
|
"location": "한맥빌딩 6층(정성호 연구원)",
|
|
"manager_primary": "-",
|
|
"manager_secondary": "-",
|
|
"ip_address": "172.16.8.2",
|
|
"remote_tool": "Web GUI",
|
|
"model_name": "Synology 공용 NAS",
|
|
"os": "DS224+ 5.4TB",
|
|
"cpu": "-",
|
|
"ram": "-",
|
|
"gpu": "-",
|
|
"ssd_1": "-",
|
|
"ssd_2": "-",
|
|
"hdd_1": "-",
|
|
"hdd_2": "-",
|
|
"hdd_3": "-",
|
|
"hdd_4": "-",
|
|
"monitoring": "비대상",
|
|
"purchase_amount": "4500000",
|
|
"purchase_vendor": "시놀로지 총판",
|
|
"approval_document": "2022_스토리지_도입_7",
|
|
"memo": "스토리지 서버 공유 자산",
|
|
"asset_name": "인사정보 NAS",
|
|
"mac_address": "00:1A:2B:3C:5F:07",
|
|
"hw_status": "운영중",
|
|
"service_type": "내부서비스",
|
|
"is_inactive": false,
|
|
"volume": "24TB",
|
|
"cpu_usage": 36,
|
|
"ram_usage": 45,
|
|
"network_traffic": "63 GB"
|
|
}
|
|
];
|
|
|
|
export const dummyEquips: any[] = Array.from({ length: 12 }).map((_, i) => ({
|
|
id: randomId(),
|
|
asset_type: '전산비품',
|
|
purchase_corp: getRandomCorp(),
|
|
asset_code: `EQ-24${String(i).padStart(3, '0')}`,
|
|
asset_name: `네트워크 스위치 ${i+1}`,
|
|
location: '전산실 랙 1',
|
|
manager_primary: '네트워크담당자',
|
|
ip_address: `192.168.10.${200 + i}`,
|
|
mac_address: `00:1A:2B:3C:51:${String(i).padStart(2, '0')}`,
|
|
os: 'Cisco IOS',
|
|
purchase_date: randomPurchaseYM(),
|
|
purchase_amount: '150000',
|
|
purchase_vendor: '다나와',
|
|
approval_document: `2024_비품구매_${i}`,
|
|
memo: '사내망 확장용',
|
|
asset_purpose: '네트워크 분배'
|
|
}));
|
|
|
|
export const dummyMobiles: any[] = Array.from({ length: 15 }).map((_, i) => ({
|
|
id: randomId(),
|
|
asset_type: '모바일기기',
|
|
purchase_corp: getRandomCorp(),
|
|
asset_code: `MOB-24${String(i).padStart(3, '0')}`,
|
|
asset_name: `테스트용 단말기 ${i+1}`,
|
|
location: '개발2팀',
|
|
manager_primary: '테스터',
|
|
os: i % 2 === 0 ? 'Android 14' : 'iOS 17',
|
|
purchase_date: randomPurchaseYM(),
|
|
purchase_amount: '900000',
|
|
purchase_vendor: '삼성전자/애플',
|
|
approval_document: `2024_모바일구매_${i}`,
|
|
memo: '앱 호환성 테스트 전용',
|
|
asset_purpose: 'QA 테스트',
|
|
ip_address: `192.168.1.${10 + i}`,
|
|
mac_address: `00:1A:2B:3C:50:${String(i).padStart(2, '0')}`
|
|
}));
|
|
|
|
export const dummySubSw: any[] = Array.from({ length: 10 }).map((_, i) => ({
|
|
id: randomId(),
|
|
sw_type: '구독SW',
|
|
sw_field: '업무용/협업',
|
|
purchase_corp: getRandomCorp(),
|
|
current_dept: '전사',
|
|
product_name: `Microsoft 365 E${3 + (i%2)}`,
|
|
purchase_date: randomDateStr(3),
|
|
start_date: randomDateStr(1),
|
|
expired_date: randomDateStr(0),
|
|
purchase_amount: '150000',
|
|
asset_count: 50 + i * 5,
|
|
email_account: `admin${i}@hmcorp.com`,
|
|
purchase_vendor: '소프트웨어인라이프',
|
|
memo: '연간 계약 갱신 필요'
|
|
}));
|
|
|
|
export const dummyPermSw: any[] = Array.from({ length: 5 }).map((_, i) => ({
|
|
id: randomId(),
|
|
sw_type: '영구SW',
|
|
sw_field: '디자인/설계',
|
|
purchase_corp: getRandomCorp(),
|
|
current_dept: '디자인팀',
|
|
product_name: `AutoCAD 202${i%4}`,
|
|
purchase_date: randomDateStr(5),
|
|
start_date: randomDateStr(5),
|
|
expired_date: '2099-12-31',
|
|
purchase_amount: '3000000',
|
|
asset_count: 2,
|
|
email_account: `design${i}@hmcorp.com`,
|
|
purchase_vendor: '오토데스크 파트너',
|
|
memo: 'USB 동글키 보관중'
|
|
}));
|
|
|
|
export const dummyCloud: any[] = Array.from({ length: 5 }).map((_, i) => ({
|
|
id: randomId(),
|
|
sw_type: '클라우드',
|
|
asset_mfr: i % 2 === 0 ? 'AWS' : 'GCP',
|
|
purchase_corp: getRandomCorp(),
|
|
current_dept: '개발팀',
|
|
product_name: `컴퓨팅 인스턴스 Type ${i}`,
|
|
email_account: `awsadmin${i}@hmcorp.com`,
|
|
purchase_method: '법인카드(신한 1234)',
|
|
purchase_amount: `${500000 + i * 100000}`,
|
|
asset_count: 1,
|
|
purchase_vendor: 'AWS/GCP',
|
|
memo: '환율 변동에 따라 매월 상이함'
|
|
}));
|
|
|
|
export const dummyDomain: any[] = Array.from({ length: 5 }).map((_, i) => ({
|
|
id: randomId(),
|
|
asset_type: '도메인',
|
|
purchase_corp: getRandomCorp(),
|
|
product_name: `사내 운영 서비스 ${i+1}`,
|
|
domain_address: `service${i+1}.hmcorp.com`,
|
|
start_date: randomDateStr(4),
|
|
expired_date: randomDateStr(0),
|
|
purchase_amount: '22000',
|
|
manager_primary: '인프라팀장',
|
|
manager_secondary: '인프라담당자',
|
|
memo: '가비아 자동갱신 설정 완료'
|
|
}));
|
|
|
|
export const dummySwUsers: any[] = Array.from({ length: 15 }).map((_, i) => ({
|
|
id: randomId(),
|
|
sw_id: dummySubSw[0]?.id || randomId(),
|
|
purchase_corp: getRandomCorp(),
|
|
current_dept: '경영지원팀',
|
|
user_current: `홍길동${i}`,
|
|
memo: `SW신청서_2400${i}`
|
|
}));
|
|
|
|
export const dummyLogs: any[] = Array.from({ length: 10 }).map((_, i) => ({
|
|
id: randomId(),
|
|
assetId: dummyPCs[0]?.id || randomId(),
|
|
date: randomDateStr(1),
|
|
details: i % 2 === 0 ? '메모리 추가 증설 (16GB -> 32GB)' : '디스플레이 파손 수리',
|
|
user: 'IT지원팀',
|
|
cost: i % 2 === 0 ? 80000 : 150000,
|
|
}));
|