o2o-negosium-original/negodata/front/src/api/generated/model/itemData.ts
Mina Choi 87524bf6e8 [feat] negodata/front: 프론트 초기 구축 (Vite+React, orval API 클라이언트, 견적/상품/협력사 페이지)
- 라우팅 react-router v7, 서버상태 TanStack Query
- orval 자동 생성 API 클라이언트(src/api/generated)
- 견적/상품/협력사/견적설정 페이지, shadcn UI, 토큰(tokens.css)
- 실행: 루트 docker compose (front :3001), README 그에 맞게 정리
- AI Studio 스캐폴드 잔재 제거(metadata.json, 중복 DESIGN_TOKENS.md), 타이틀 NegoData, vite.config 죽은코드 제거

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-16 17:18:08 +09:00

48 lines
1.7 KiB
TypeScript

/**
* Generated by orval v7.21.0 🍺
* Do not edit manually.
* Negodata Api Server
* OpenAPI spec version: 0.1.0
*/
import type { ItemDataCode } from "./itemDataCode";
import type { ItemDataCategory } from "./itemDataCategory";
import type { ItemDataImageUrl } from "./itemDataImageUrl";
import type { ItemDataModelName } from "./itemDataModelName";
import type { ItemDataSpec } from "./itemDataSpec";
import type { ItemDataManufacturer } from "./itemDataManufacturer";
import type { ItemDataMadeIn } from "./itemDataMadeIn";
import type { ItemDataPrice } from "./itemDataPrice";
import type { ItemDataMoq } from "./itemDataMoq";
import type { ItemDataLeadTime } from "./itemDataLeadTime";
import type { ItemDataQuantityUnit } from "./itemDataQuantityUnit";
import type { ItemDataDeliveryType } from "./itemDataDeliveryType";
import type { ItemDataVatYn } from "./itemDataVatYn";
import type { ItemDataDeliveryFeeYn } from "./itemDataDeliveryFeeYn";
import type { ItemDataCreatedAt } from "./itemDataCreatedAt";
import type { ItemDataUpdatedAt } from "./itemDataUpdatedAt";
export interface ItemData {
item_id: string;
company_id: string;
user_id: string;
name: string;
code?: ItemDataCode;
category?: ItemDataCategory;
category_type?: number;
image_url?: ItemDataImageUrl;
model_name?: ItemDataModelName;
spec?: ItemDataSpec;
manufacturer?: ItemDataManufacturer;
made_in?: ItemDataMadeIn;
price?: ItemDataPrice;
internet_lowest_price_yn?: boolean;
moq?: ItemDataMoq;
lead_time?: ItemDataLeadTime;
quantity_unit?: ItemDataQuantityUnit;
delivery_type?: ItemDataDeliveryType;
vat_yn?: ItemDataVatYn;
delivery_fee_yn?: ItemDataDeliveryFeeYn;
created_at?: ItemDataCreatedAt;
updated_at?: ItemDataUpdatedAt;
}