| | |
| | | package com.project.admin.controller.system; |
| | | |
| | | import com.project.common.annotation.Log; |
| | | import com.project.common.annotation.RepeatSubmit; |
| | | import com.project.common.constant.UserConstants; |
| | | import com.project.common.core.controller.BaseController; |
| | | import com.project.common.core.domain.AjaxResult; |
| | |
| | | @ApiOperation(value = "保存导入信息") |
| | | @Log(title = "导入用户信息保存" , businessType = BusinessType.IMPORT) |
| | | @PostMapping("/saveImport") |
| | | @RepeatSubmit |
| | | public AjaxResult saveImport(@RequestBody SysUserResultVo resultVo) |
| | | { |
| | | return toAjax(userService.saveImport(resultVo) ? 1 : 0); |