|
@@ -1,5 +1,20 @@
|
|
|
-package cn.com.v2.controller;
|
|
|
+package com.usky.cockpit.controller.web;
|
|
|
|
|
|
+import com.usky.cockpit.common.config.V2Config;
|
|
|
+import com.usky.cockpit.common.domain.ResultTable;
|
|
|
+import com.usky.cockpit.common.domain.Tablepar;
|
|
|
+import com.usky.cockpit.controller.web.FileController;
|
|
|
+import com.usky.cockpit.model.GoviewProject;
|
|
|
+import com.usky.cockpit.model.GoviewProjectData;
|
|
|
+import com.usky.cockpit.model.SysFile;
|
|
|
+import com.usky.cockpit.model.vo.GoviewProjectVo;
|
|
|
+import com.usky.cockpit.model.vo.SysFileVo;
|
|
|
+import com.usky.cockpit.service.IGoviewProjectDataService;
|
|
|
+import com.usky.cockpit.service.IGoviewProjectService;
|
|
|
+import com.usky.cockpit.service.ISysFileService;
|
|
|
+import com.usky.cockpit.util.ConvertUtil;
|
|
|
+import com.usky.cockpit.util.SnowflakeIdWorker;
|
|
|
+import com.usky.common.core.web.domain.AjaxResult;
|
|
|
import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
@@ -13,22 +28,6 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
-import cn.com.v2.common.base.BaseController;
|
|
|
-import cn.com.v2.common.config.V2Config;
|
|
|
-import cn.com.v2.common.domain.AjaxResult;
|
|
|
-import cn.com.v2.common.domain.ResultTable;
|
|
|
-import cn.com.v2.common.domain.Tablepar;
|
|
|
-import cn.com.v2.model.GoviewProject;
|
|
|
-import cn.com.v2.model.GoviewProjectData;
|
|
|
-import cn.com.v2.model.SysFile;
|
|
|
-import cn.com.v2.model.vo.GoviewProjectVo;
|
|
|
-import cn.com.v2.model.vo.SysFileVo;
|
|
|
-import cn.com.v2.service.IGoviewProjectDataService;
|
|
|
-import cn.com.v2.service.IGoviewProjectService;
|
|
|
-import cn.com.v2.service.ISysFileService;
|
|
|
-import cn.com.v2.util.ConvertUtil;
|
|
|
-import cn.com.v2.util.SnowflakeIdWorker;
|
|
|
-import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -51,7 +50,7 @@ import org.springframework.ui.ModelMap;
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping("/api/goview/project")
|
|
|
-public class GoviewProjectController extends BaseController{
|
|
|
+public class GoviewProjectController{
|
|
|
@Autowired
|
|
|
private ISysFileService iSysFileService;
|
|
|
@Autowired
|
|
@@ -61,8 +60,7 @@ public class GoviewProjectController extends BaseController{
|
|
|
@Autowired
|
|
|
private IGoviewProjectDataService iGoviewProjectDataService;
|
|
|
|
|
|
-
|
|
|
- @ApiOperation(value = "分页跳转", notes = "分页跳转")
|
|
|
+
|
|
|
@GetMapping("/list")
|
|
|
@ResponseBody
|
|
|
public ResultTable list(Tablepar tablepar){
|
|
@@ -91,9 +89,9 @@ public class GoviewProjectController extends BaseController{
|
|
|
goviewProject.setState(-1);
|
|
|
boolean b=iGoviewProjectService.save(goviewProject);
|
|
|
if(b){
|
|
|
- return successData(200, goviewProject).put("msg", "创建成功");
|
|
|
+ return AjaxResult.success("创建成功");
|
|
|
}else{
|
|
|
- return error();
|
|
|
+ return AjaxResult.error();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -108,12 +106,12 @@ public class GoviewProjectController extends BaseController{
|
|
|
@DeleteMapping("/delete")
|
|
|
@ResponseBody
|
|
|
public AjaxResult remove(String ids){
|
|
|
- List<String> lista=ConvertUtil.toListStrArray(ids);
|
|
|
+ List<String> lista= ConvertUtil.toListStrArray(ids);
|
|
|
Boolean b=iGoviewProjectService.removeByIds(lista);
|
|
|
if(b){
|
|
|
- return success();
|
|
|
+ return AjaxResult.success();
|
|
|
}else{
|
|
|
- return error();
|
|
|
+ return AjaxResult.error();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -124,9 +122,9 @@ public class GoviewProjectController extends BaseController{
|
|
|
{
|
|
|
Boolean b= iGoviewProjectService.updateById(goviewProject);
|
|
|
if(b){
|
|
|
- return success();
|
|
|
+ return AjaxResult.success();
|
|
|
}
|
|
|
- return error();
|
|
|
+ return AjaxResult.error();
|
|
|
}
|
|
|
|
|
|
|
|
@@ -141,9 +139,9 @@ public class GoviewProjectController extends BaseController{
|
|
|
updateWrapper.set(GoviewProject::getProjectName, goviewProject.getProjectName());
|
|
|
Boolean b=iGoviewProjectService.update(updateWrapper);
|
|
|
if(b){
|
|
|
- return success();
|
|
|
+ return AjaxResult.success();
|
|
|
}
|
|
|
- return error();
|
|
|
+ return AjaxResult.error();
|
|
|
}
|
|
|
|
|
|
|
|
@@ -158,11 +156,11 @@ public class GoviewProjectController extends BaseController{
|
|
|
updateWrapper.set(GoviewProject::getState, goviewProject.getState());
|
|
|
Boolean b=iGoviewProjectService.update(updateWrapper);
|
|
|
if(b){
|
|
|
- return success();
|
|
|
+ return AjaxResult.success();
|
|
|
}
|
|
|
- return error();
|
|
|
+ return AjaxResult.error();
|
|
|
}
|
|
|
- return error("警告非法字段");
|
|
|
+ return AjaxResult.error("警告非法字段");
|
|
|
}
|
|
|
|
|
|
|
|
@@ -178,9 +176,9 @@ public class GoviewProjectController extends BaseController{
|
|
|
GoviewProjectVo goviewProjectVo=new GoviewProjectVo();
|
|
|
BeanUtils.copyProperties(goviewProject,goviewProjectVo);
|
|
|
goviewProjectVo.setContent(blogText.getContent());
|
|
|
- return AjaxResult.successData(200,goviewProjectVo).put("msg","获取成功");
|
|
|
+ return AjaxResult.success("获取成功");
|
|
|
}
|
|
|
- return AjaxResult.successData(200, null).put("msg","无数据");
|
|
|
+ return AjaxResult.success("无数据");
|
|
|
|
|
|
}
|
|
|
|
|
@@ -193,23 +191,22 @@ public class GoviewProjectController extends BaseController{
|
|
|
|
|
|
GoviewProject goviewProject= iGoviewProjectService.getById(data.getProjectId());
|
|
|
if(goviewProject==null) {
|
|
|
- return error("没有该项目ID");
|
|
|
+ return AjaxResult.error("没有该项目ID");
|
|
|
}
|
|
|
GoviewProjectData goviewProjectData= iGoviewProjectDataService.getOne(new LambdaQueryWrapper<GoviewProjectData>().eq(GoviewProjectData::getProjectId, goviewProject.getId()));
|
|
|
if(goviewProjectData!=null) {
|
|
|
data.setId(goviewProjectData.getId());
|
|
|
iGoviewProjectDataService.updateById(data);
|
|
|
- return success("数据保存成功");
|
|
|
+ return AjaxResult.success("数据保存成功");
|
|
|
}else {
|
|
|
iGoviewProjectDataService.save(data);
|
|
|
- return success("数据保存成功");
|
|
|
+ return AjaxResult.success("数据保存成功");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 上传文件
|
|
|
* @param object 文件流对象
|
|
|
- * @param bucketName 桶名
|
|
|
* @return
|
|
|
* @throws Exception
|
|
|
*/
|
|
@@ -225,7 +222,7 @@ public class GoviewProjectController extends BaseController{
|
|
|
if(fileName.lastIndexOf(".")!=-1) {//有后缀
|
|
|
suffixName = fileName.substring(fileName.lastIndexOf(".")).toLowerCase();
|
|
|
//mediaKey=MD5.create().digestHex(fileName);
|
|
|
- mediaKey=SnowflakeIdWorker.getUUID();
|
|
|
+ mediaKey= SnowflakeIdWorker.getUUID();
|
|
|
fileSuffixName=mediaKey+suffixName;
|
|
|
}else {//无后缀
|
|
|
//取得唯一id
|
|
@@ -233,7 +230,7 @@ public class GoviewProjectController extends BaseController{
|
|
|
mediaKey=SnowflakeIdWorker.getUUID();
|
|
|
//fileSuffixName=mediaKey+suffixName;
|
|
|
}
|
|
|
- String virtualKey=FileController.getFirstNotNull(v2Config.getXnljmap());
|
|
|
+ String virtualKey= FileController.getFirstNotNull(v2Config.getXnljmap());
|
|
|
String absolutePath=v2Config.getXnljmap().get(FileController.getFirstNotNull(v2Config.getXnljmap()));
|
|
|
SysFile sysFile=new SysFile();
|
|
|
sysFile.setId(SnowflakeIdWorker.getUUID());
|
|
@@ -250,7 +247,7 @@ public class GoviewProjectController extends BaseController{
|
|
|
object.transferTo(desc);
|
|
|
SysFileVo sysFileVo=BeanUtil.copyProperties(sysFile, SysFileVo.class);
|
|
|
sysFileVo.setFileurl(v2Config.getHttpurl()+sysFile.getVirtualKey()+"/"+sysFile.getRelativePath()+"/"+sysFile.getFileName());
|
|
|
- return successData(200, sysFileVo);
|
|
|
+ return AjaxResult.success(sysFileVo);
|
|
|
}
|
|
|
|
|
|
|