| | |
| | | import com.ycl.jxkg.base.Result; |
| | | import com.ycl.jxkg.service.FileUpload; |
| | | import com.ycl.jxkg.service.UserService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | |
| | | import java.io.IOException; |
| | | import java.io.InputStream; |
| | | |
| | | |
| | | @RequiredArgsConstructor |
| | | @RequestMapping("/api/student/upload") |
| | | @RestController("StudentUploadController") |
| | | public class UploadController extends BaseApiController { |
| | | |
| | | private final FileUpload fileUpload; |
| | | private final UserService userService; |
| | | |
| | | @Autowired |
| | | public UploadController(FileUpload fileUpload, UserService userService) { |
| | | this.fileUpload = fileUpload; |
| | | this.userService = userService; |
| | | } |
| | | |
| | | |
| | | @RequestMapping("/image") |