2023-11-09 17:06:12 +08:00

16 lines
254 B
Go

package service
import (
"hospital-admin-api/api/model"
)
// ExportService 导出
type ExportService struct {
}
// DoctorWithdrawal 提现记录
func (r *ExportService) DoctorWithdrawal([]*model.DoctorWithdrawal) (string, error) {
return "", nil
}