mongodb currency 관련 작업

currency 작업 스케줄 추가
This commit is contained in:
2025-06-12 14:19:49 +09:00
parent bef9c41f31
commit b14010f77b
14 changed files with 1463 additions and 143 deletions

View File

@@ -0,0 +1,16 @@
package com.caliverse.admin.mongodb.dto;
import lombok.Data;
import java.util.List;
@Data
public class MongoPageResult<T> {
private final List<T> items;
private final int totalCount;
public MongoPageResult(List<T> items, int totalCount) {
this.items = items;
this.totalCount = totalCount;
}
}