| 7 | import request from './request' |
| 8 | |
| 9 | export interface MatchResult { |
| 10 | id: number |
| 11 | resumeId: number |
| 12 | positionId: number |
| 13 | resumeName: string |
| 14 | positionTitle: string |
| 15 | finalScore: number |
| 16 | ragScore: number |
| 17 | graphScore: number |
| 18 | llmScore: number |
| 19 | matchedSkills: string[] |
| 20 | missingSkills: string[] |
| 21 | extraSkills: string[] |
| 22 | llmReport: string |
| 23 | matchGrade: string |
| 24 | recommendLevel: number |
| 25 | scoreDetails: Record<string, unknown> |
| 26 | createdAt: string |
| 27 | } |
| 28 | |
| 29 | export interface MatchRecordListResponse { |
| 30 | content: MatchResult[] |
nothing calls this directly
no outgoing calls
no test coverage detected