新增 提现详情-关联订单列表-分页

This commit is contained in:
2023-10-31 14:23:33 +08:00
parent 2e4363a7d4
commit dda86b626d
5 changed files with 267 additions and 11 deletions
+8 -1
View File
@@ -1,7 +1,8 @@
package requests
type DoctorWithdrawalRequest struct {
GetDoctorWithdrawalPage // 获取医生提现列表-分页
GetDoctorWithdrawalPage // 获取医生提现列表-分页
GetDoctorWithdrawalOrderPage // 提现详情-关联订单列表-分页
}
// GetDoctorWithdrawalPage 获取医生提现列表-分页
@@ -15,3 +16,9 @@ type GetDoctorWithdrawalPage struct {
ExamineStatus *int `json:"examine_status" form:"examine_status" label:"审核状态"` // (1:审核中 2:审核通过 3:审核未通过)
PaymentStatus *int `json:"payment_status" form:"payment_status" label:"打款状态"` // 财务打款状态(0:否 1:是)
}
// GetDoctorWithdrawalOrderPage 提现详情-关联订单列表-分页
type GetDoctorWithdrawalOrderPage struct {
Page int `json:"page" form:"page" label:"页码"`
PageSize int `json:"page_size" form:"page_size" label:"每页个数"`
}