增加导出

This commit is contained in:
2023-11-09 17:06:12 +08:00
parent d68093c242
commit b0db2dd29a
7 changed files with 348 additions and 5 deletions
+15
View File
@@ -0,0 +1,15 @@
package service
import (
"hospital-admin-api/api/model"
)
// ExportService 导出
type ExportService struct {
}
// DoctorWithdrawal 提现记录
func (r *ExportService) DoctorWithdrawal([]*model.DoctorWithdrawal) (string, error) {
return "", nil
}