mongodb currency 관련 작업
currency 작업 스케줄 추가
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user