新增问诊病例,患者列表(未完成)

This commit is contained in:
2023-09-15 15:16:58 +08:00
parent 95769e6e90
commit 744fb8d067
15 changed files with 705 additions and 50 deletions
+15
View File
@@ -0,0 +1,15 @@
package requests
type UserPatientRequest struct {
GetUserPatientPage // 获取患者列表-分页
}
// GetUserPatientPage 获取患者列表-分页
type GetUserPatientPage struct {
Page int `json:"page" form:"page" label:"页码"`
PageSize int `json:"page_size" form:"page_size" label:"每页个数"`
UserName string `json:"user_name" form:"user_name" label:"用户名称"`
Status *int `json:"status" form:"status" label:"状态"` // 0:禁用 1:正常 2:删除)
Mobile string `json:"mobile" form:"mobile" label:"手机号"`
CreatedAt string `json:"created_at" form:"created_at" label:"订单创建时间"` // 时间区间,数组形式,下标0为开始时间,下标1为结束时间
}