Files
TrangleAgent/Backend/internal/model/response/common.go

9 lines
150 B
Go
Raw Normal View History

2026-01-18 18:20:40 +08:00
package response
// 分页结果
type PageResult struct {
Page int `json:"page"`
PageSize int `json:"pageSize"`
Total int `json:"total"`
}