This commit is contained in:
2024-06-04 14:52:44 +08:00
parent ad242af2c4
commit 58bf39a5e3
9 changed files with 320 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
package requests
type HealthPackageRequest struct {
GetHealthPackagePage // 健康包
}
// GetHealthPackagePage 健康包
type GetHealthPackagePage struct {
Page int `json:"page" form:"page" label:"页码"`
PageSize int `json:"page_size" form:"page_size" label:"每页个数"`
}