feat(medicine): add models + service

This commit is contained in:
riefive
2025-09-25 15:59:53 +07:00
parent 46045ebb41
commit 79fd9db5e2
6 changed files with 188 additions and 12 deletions

No files matched your search

+15
View File
@@ -0,0 +1,15 @@
// Default item meta model for entities
export interface ItemMeta {
id: number;
createdAt: string | null;
deletedAt: string | null;
updatedAt: string | null;
}
// Pagination meta model for API responses
export interface PaginationMeta {
page_number: string;
page_size: string;
record_totalCount: string;
source: string;
}