학습데이터관리 > 작업이력 진행중

This commit is contained in:
2026-01-14 14:20:13 +09:00
parent 19797c2171
commit 91b09a917e
6 changed files with 169 additions and 0 deletions

View File

@@ -314,4 +314,25 @@ public class LabelAllocateDto {
private Long totalCnt;
private List<MoveUserList> moveUserList;
}
@Schema(name = "WorkHistoryDto", description = "WorkHistoryDto")
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public static class WorkHistoryDto {
private Integer rowNum;
private String changeDetectionYear;
private Long stage;
private ZonedDateTime gukyuinApplyDttm;
private Long assignedCnt;
private Long completeCnt;
private Long skipCnt;
private Long remainCnt;
// private String status;
private Double percent;
private ZonedDateTime createdDttm;
private ZonedDateTime projectCloseDttm;
}
}