新增 提现详情-关联订单列表-分页
This commit is contained in:
@@ -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:"每页个数"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user