新增 医生账户详情

This commit is contained in:
2023-11-01 16:50:55 +08:00
parent fc738c4d32
commit 873b3b1676
11 changed files with 320 additions and 17 deletions
+13
View File
@@ -0,0 +1,13 @@
package requests
type DoctorAccountRequest struct {
GetDoctorAccountPage // 获取医生账户列表-分页
}
// GetDoctorAccountPage 获取医生账户列表-分页
type GetDoctorAccountPage struct {
Page int `json:"page" form:"page" label:"页码"`
PageSize int `json:"page_size" form:"page_size" label:"每页个数"`
Mobile string `json:"mobile" form:"mobile" label:"手机号"`
UserName string `json:"user_name" form:"user_name" label:"用户名"`
}