New file |
| | |
| | | package com.ycl.controller.move; |
| | | |
| | | import com.ycl.common.base.Result; |
| | | import com.ycl.mapper.SysFormMapper; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | /** |
| | | * @authorï¼xp |
| | | * @dateï¼2025/4/10 11:55 |
| | | */ |
| | | @RequiredArgsConstructor |
| | | @Api(value = "è¿ç§»æä»¶æ¶å¤çæä»¶æ°æ®ä¿¡æ¯", tags = "è¿ç§»æä»¶æ¶å¤çæä»¶æ°æ®ä¿¡æ¯") |
| | | @RestController |
| | | @RequestMapping("/dev/files") |
| | | public class MoveFilesDateController { |
| | | |
| | | private final SysFormMapper formMapper; |
| | | |
| | | @PostMapping("/move") |
| | | @ApiOperation("ä¿®æ¹è¡¨åçä¸ä¼ ipãflowableä¸çè¡¨åæ°æ®ip") |
| | | @PreAuthorize("@ss.hasRole('admin')") |
| | | public Result move() { |
| | | return Result.ok("æ°æ®ä¿®æ¹æå"); |
| | | } |
| | | |
| | | } |