api_yearlist_for_bug_image_reg

This commit is contained in:
2025-12-22 19:35:15 +09:00
parent acd0a783b5
commit 2a314dac7b

View File

@@ -311,11 +311,11 @@ public class MapSheetMngDto {
@Getter
public static class ResisterYearList {
private Integer currnet;
private Integer current;
private List<Integer> years;
public ResisterYearList(Integer currnet, List<Integer> years) {
this.currnet = currnet;
public ResisterYearList(Integer current, List<Integer> years) {
this.current = current;
this.years = years;
}
}