| | |
| | | import com.iailab.framework.common.pojo.CommonResult; |
| | | import com.iailab.module.model.mpk.dto.MpkFileDTO; |
| | | import com.iailab.module.model.mpk.service.MpkFileService; |
| | | import com.iailab.module.model.mpk.service.PackService; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import org.apache.commons.io.IOUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | public class MpkFileController { |
| | | @Autowired |
| | | private MpkFileService mpkFileService; |
| | | |
| | | @Autowired |
| | | private PackService packService; |
| | | |
| | | @GetMapping("page") |
| | | @Operation(summary = "分页") |
| | |
| | | dto.setGroupName(dto.getMenuAndGroup().get(1)); |
| | | } |
| | | } |
| | | dto.setPyModule(packService.getModelPath(dto.getClassName())); |
| | | mpkFileService.save(dto); |
| | | return CommonResult.success(true); |
| | | } |
| | |
| | | dto.setGroupName(dto.getMenuAndGroup().get(1)); |
| | | } |
| | | } |
| | | dto.setPyModule(packService.getModelPath(dto.getClassName())); |
| | | mpkFileService.update(dto); |
| | | return CommonResult.success(true); |
| | | } |
| | |
| | | |
| | | IOUtils.write(data, response.getOutputStream()); |
| | | } catch (Exception e) { |
| | | throw new RuntimeException("代码生成异常"); |
| | | throw new RuntimeException("代码生成异常",e); |
| | | } |
| | | } |
| | | |
| | |
| | | |
| | | @PostMapping("/upload") |
| | | @Operation(summary = "python文件上传") |
| | | public CommonResult<Map<String,String>> importExcel(@RequestParam("file") MultipartFile file) throws Exception { |
| | | public CommonResult<Map<String,String>> upload(@RequestParam("file") MultipartFile file) throws Exception { |
| | | Map<String,String> result = mpkFileService.savePyFile(file); |
| | | return success(result); |
| | | } |
| | | |
| | | @PostMapping("/publish") |
| | | public CommonResult<String> publish(@RequestBody Map<String, Object> params) { |
| | | return mpkFileService.publish(params); |
| | | } |
| | | } |