Change page size from 100 to 10

This commit is contained in:
Teriuihi 2025-04-11 21:57:10 +02:00
parent ce9260ede6
commit e7fde81f49
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import java.util.List;
public interface NameHistoryMapper { public interface NameHistoryMapper {
int PAGE_SIZE = 100; int PAGE_SIZE = 10;
/** /**
* Retrieves a list of all types of recent punishment history records filtered based on the given parameters sorted * Retrieves a list of all types of recent punishment history records filtered based on the given parameters sorted

View File

@ -11,7 +11,7 @@ import java.util.UUID;
public interface UUIDHistoryMapper { public interface UUIDHistoryMapper {
int PAGE_SIZE = 100; int PAGE_SIZE = 10;
@Results({ @Results({
@Result(property = "uuid", column = "uuid", javaType = UUID.class, typeHandler = UUIDTypeHandler.class), @Result(property = "uuid", column = "uuid", javaType = UUID.class, typeHandler = UUIDTypeHandler.class),