- 백엔드 GET /v1/statistics/summary: 회사/내견적 스코프, 최근 6개월 파생 집계(저장 X, DDL 0) - 지표: 총절감/절감률/낙찰률/앵커도달률/마감수/재견적라운드 + 월별추이·마감결과분해·참여율·유형별(협상/견적)·카테고리·카드빈도 - 프론트 recharts+shadcn Chart, 사이드바 통계 nav, /statistics Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
715 B
TypeScript
24 lines
715 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { StatKpi } from './statKpi';
|
|
import type { StatMonthPoint } from './statMonthPoint';
|
|
import type { StatOutcome } from './statOutcome';
|
|
import type { StatParticipation } from './statParticipation';
|
|
import type { StatTypeRow } from './statTypeRow';
|
|
import type { StatCategory } from './statCategory';
|
|
import type { StatCardUsage } from './statCardUsage';
|
|
|
|
export interface StatScope {
|
|
kpi?: StatKpi;
|
|
trend?: StatMonthPoint[];
|
|
outcome?: StatOutcome;
|
|
participation?: StatParticipation;
|
|
type_split?: StatTypeRow[];
|
|
categories?: StatCategory[];
|
|
cards?: StatCardUsage[];
|
|
}
|