| | |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @RestController |
| | |
| | | |
| | | @ApiOperation("修改用户工序") |
| | | @SaCheckPermission("userList.search") |
| | | @PostMapping("updateProcess/{id}/{process}") |
| | | public Result updateProcess(@PathVariable Integer id,@PathVariable String process){ |
| | | @PostMapping("updateProcess/{id}") |
| | | public Result updateProcess(@PathVariable Integer id, @RequestBody Map<String, String> process){ |
| | | return Result.success(userService.updateProcessSv(id,process)); |
| | | } |
| | | } |