【7.1.6】整理代码

pull/26/MERGE
fengshuonan 2022-02-14 15:54:16 +08:00
parent 087ebbf45d
commit 9de4b27ee1
2 changed files with 2 additions and 3 deletions

View File

@ -76,8 +76,8 @@ public class MigrationController {
* @date 2021/7/7 11:11
**/
@PostResource(name = "恢复备份数据", path = "/dataMigration/restoreData")
public ResponseData<?> restoreData(@RequestPart("file") MultipartFile file,String type) {
migrationService.restoreData(file,type);
public ResponseData<?> restoreData(@RequestPart("file") MultipartFile file, String type) {
migrationService.restoreData(file, type);
return new SuccessResponseData<>();
}
}

View File

@ -277,7 +277,6 @@ public class SysUserController {
return new SuccessResponseData<>(sysUserService.getAllUserIdList());
}
/**
*
*