提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.infra.api.file; |
H |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.CommonResult; |
|
4 |
import com.iailab.module.infra.api.file.dto.FileCreateReqDTO; |
|
5 |
import com.iailab.module.infra.service.file.FileService; |
|
6 |
import org.springframework.validation.annotation.Validated; |
|
7 |
import org.springframework.web.bind.annotation.RestController; |
|
8 |
|
|
9 |
import javax.annotation.Resource; |
|
10 |
|
|
11 |
import static com.iailab.framework.common.pojo.CommonResult.success; |
|
12 |
|
|
13 |
@RestController // 提供 RESTful API 接口,给 Feign 调用 |
|
14 |
@Validated |
|
15 |
public class FileApiImpl implements FileApi { |
|
16 |
|
|
17 |
@Resource |
|
18 |
private FileService fileService; |
|
19 |
|
|
20 |
@Override |
|
21 |
public CommonResult<String> createFile(FileCreateReqDTO createReqDTO) { |
|
22 |
return success(fileService.createFile(createReqDTO.getName(), createReqDTO.getPath(), |
|
23 |
createReqDTO.getContent())); |
|
24 |
} |
|
25 |
|
|
26 |
} |