File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package kr.itn.itnhub.review;
/** {@link ReviewParser}가 엑셀 한 행에서 읽어낸 원시 값. W열은 원본 시트의 빈 열이라 대응 필드가 없다. */
public record ReviewRow(
int seq,
String siteName,
String category,
String boardPath,
String boardName,
String postTitle,
String url,
String postRegistered,
String producedDate,
String publishedDate,
String hasAttachment,
String koglAttached,
String koglType,
String aiType,
String surveyorNote,
String openable,
String reviewMajor,
String reviewMinor,
String reviewResult,
String judgedKoglType,
String judgedAiType,
String opinion,
String lawyerNote,
String needsProcessing) {
}