Feat(BE-339): make a report for purchasing supplier

This commit is contained in:
ragilap
2025-12-16 14:42:31 +07:00
parent 062a7937e2
commit cd739f41b9
8 changed files with 474 additions and 6 deletions
+5 -4
View File
@@ -14,10 +14,11 @@ type Success struct {
}
type Meta struct {
Page int `json:"page"`
Limit int `json:"limit"`
TotalPages int64 `json:"total_pages"`
TotalResults int64 `json:"total_results"`
Page int `json:"page"`
Limit int `json:"limit"`
TotalPages int64 `json:"total_pages"`
TotalResults int64 `json:"total_results"`
Filters interface{} `json:"filters,omitempty"`
}
type SuccessWithPaginate[T any] struct {