package kr.itn.itnhub.process; /** * {@link ProcessParser}가 엑셀 한 행에서 읽어낸 원시 값. U열(수정 링크)과 Y열(빈 열)은 * 원본 시트에서 건너뛰는 열이라 대응 필드가 없다. */ public record ProcessRow( int seq, String siteName, String category, String boardName, String postTitle, String url, String description, String hasAttachment, String priorKoglType, String contractDocs, String producedDate, String publishedDate, String reviewMajor, String reviewMinor, String reviewResult, String reviewKoglType, String reviewAiType, String reviewOpinion, String reviewNote, String priorEvidence, String judgedKoglType, String judgedAiType, String finalOpinion, String judgmentBasis, String processStatus) { }