新增了获取患者列表-限制条数

This commit is contained in:
2024-06-05 14:06:00 +08:00
parent eab9e413f7
commit 9f6b54a6c4
4 changed files with 95 additions and 0 deletions
+9
View File
@@ -4,6 +4,7 @@ type UserPatientRequest struct {
GetUserPatientPage // 获取患者列表-分页
PutUserDoctorStatus // 修改患者状态
UserPatientExportList // 患者列表-导出
GetUserPatientList // 获取患者列表-限制条数
}
// GetUserPatientPage 获取患者列表-分页
@@ -31,3 +32,11 @@ type UserPatientExportList struct {
Mobile string `json:"mobile" form:"mobile" label:"手机号"`
CreatedAt string `json:"created_at" form:"created_at" label:"注册时间"` // 时间区间,数组形式,下标0为开始时间,下标1为结束时间
}
// GetUserPatientList 获取患者列表-限制条数
type GetUserPatientList struct {
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为结束时间
}