16 lines
254 B
Go
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
|
|
}
|