提现记录-关联订单-导出

This commit is contained in:
2023-11-13 17:23:14 +08:00
parent d05ea66f01
commit 0c23273c81
5 changed files with 254 additions and 8 deletions
+14 -6
View File
@@ -1,11 +1,12 @@
package requests
type DoctorWithdrawalRequest struct {
GetDoctorWithdrawalPage // 获取医生提现列表-分页
GetDoctorWithdrawalOrderPage // 提现详情-关联订单列表-分页
PutDoctorWithdrawalIncome // 修改提现个人所得税
PutDoctorWithdrawalExamine // 修改提现审核状态
DoctorWithdrawalExportList // 提现记录列表-导出
GetDoctorWithdrawalPage // 获取医生提现列表-分页
GetDoctorWithdrawalOrderPage // 提现详情-关联订单列表-分页
PutDoctorWithdrawalIncome // 修改提现个人所得税
PutDoctorWithdrawalExamine // 修改提现审核状态
DoctorWithdrawalExportList // 提现记录列表-导出
DoctorWithdrawalOrderExportList // 提现详情-关联订单-导出
}
// GetDoctorWithdrawalPage 获取医生提现列表-分页
@@ -22,7 +23,7 @@ type GetDoctorWithdrawalPage struct {
// GetDoctorWithdrawalOrderPage 提现详情-关联订单列表-分页
type GetDoctorWithdrawalOrderPage struct {
WithdrawalId string `json:"withdrawal_id" form:"withdrawal_id" validate:"required" label:"id"`
WithdrawalId string `json:"withdrawal_id" form:"withdrawal_id" validate:"required" label:"withdrawal_id"`
Page int `json:"page" form:"page" label:"页码"`
PageSize int `json:"page_size" form:"page_size" label:"每页个数"`
}
@@ -49,3 +50,10 @@ type DoctorWithdrawalExportList struct {
ExamineStatus *int `json:"examine_status" form:"examine_status" label:"审核状态"` // (1:审核中 2:审核通过 3:审核未通过)
PaymentStatus *int `json:"payment_status" form:"payment_status" label:"打款状态"` // 财务打款状态(0:否 1:是)
}
// DoctorWithdrawalOrderExportList 提现详情-关联订单-导出
type DoctorWithdrawalOrderExportList struct {
Type int `json:"type" form:"type" label:"类型" validate:"required,oneof=1 2 3"` // 1:当前搜索数据 2:当前选择数据 3:全部数据
Id string `json:"id" form:"id" label:"id"` // 选择数据的id,逗号分隔,当type为2时必填
WithdrawalId string `json:"withdrawal_id" form:"withdrawal_id" validate:"required" label:"withdrawal_id"`
}