作者 庄敏学

合并分支 'dev' 到 'test'

返回值



查看合并请求 !21
... ... @@ -364,7 +364,11 @@ func (srv ExcelDataService) ImportCost(importDataCommand *command.ImportDataComm
if err != nil {
return nil, application.ThrowError(application.BUSINESS_ERROR, err.Error())
}
return result.Data, nil
if result.Code != 0{
return nil,application.ThrowError(application.BUSINESS_ERROR,result.Msg)
}else {
return result.Data, nil
}
}
// 导入结果
... ...