|
@@ -11,8 +11,11 @@ import com.ruoyi.common.enums.BusinessType;
|
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
|
import com.ruoyi.system.domain.BaseParam;
|
|
|
import com.ruoyi.system.domain.ComponentsLibrary;
|
|
|
+import com.ruoyi.system.domain.vo.ComponentsAndBasicVo;
|
|
|
+import com.ruoyi.system.service.BasicLibraryService;
|
|
|
import com.ruoyi.system.service.ComponentsLibraryService;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import org.apache.poi.ss.formula.functions.T;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -33,6 +36,9 @@ public class ComponentsLibraryController extends BaseController {
|
|
|
@Autowired
|
|
|
private ComponentsLibraryService componentsLibraryService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private BasicLibraryService basicLibraryService;
|
|
|
+
|
|
|
/**
|
|
|
* 查询组件库列表
|
|
|
*/
|
|
@@ -52,14 +58,14 @@ public class ComponentsLibraryController extends BaseController {
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * 查询基础库列表
|
|
|
+ * 查询组件全部信息 包括
|
|
|
*/
|
|
|
@ApiOperation("查询组件库管理列表")
|
|
|
// @PreAuthorize("@ss.hasPermi('platform:base:list')")
|
|
|
@PostMapping("/allList")
|
|
|
- public R<List<ComponentsLibrary>> getAllList() {
|
|
|
- List<ComponentsLibrary> basicLibraryList = componentsLibraryService.list(new LambdaQueryWrapper<ComponentsLibrary>().eq(ComponentsLibrary::getDelFlag,0));
|
|
|
- return R.ok(basicLibraryList);
|
|
|
+ public R<List<ComponentsAndBasicVo>> getAllList() {
|
|
|
+ List<ComponentsAndBasicVo> list = componentsLibraryService.getAllComponentsInfo();
|
|
|
+ return R.ok(list);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -69,7 +75,6 @@ public class ComponentsLibraryController extends BaseController {
|
|
|
// @PreAuthorize("@ss.hasPermi('platform:components:query')")
|
|
|
@PostMapping(value = "/getInfo")
|
|
|
public R<ComponentsLibrary> getInfo(@RequestBody BaseParam param) {
|
|
|
-
|
|
|
return R.ok(componentsLibraryService.getOne(new LambdaQueryWrapper<ComponentsLibrary>().eq(ComponentsLibrary::getId,param.getId())
|
|
|
.eq(ComponentsLibrary::getDelFlag,"0"),false));
|
|
|
}
|
|
@@ -96,12 +101,9 @@ public class ComponentsLibraryController extends BaseController {
|
|
|
// @PreAuthorize("@ss.hasPermi('platform:components:remove')")
|
|
|
@Log(title = "组件库", businessType = BusinessType.DELETE)
|
|
|
@PostMapping("/delete")
|
|
|
- public R remove(@RequestBody BaseParam param) {
|
|
|
- ComponentsLibrary componentsLibrary = new ComponentsLibrary();
|
|
|
- componentsLibrary.setId(param.getId());
|
|
|
- componentsLibrary.setDelFlag("2");
|
|
|
- boolean sta = componentsLibraryService.updateById(componentsLibrary);
|
|
|
- if (!sta){
|
|
|
+ public R<T> remove(@RequestBody BaseParam param) {
|
|
|
+ boolean flat = componentsLibraryService.removeById(param.getId());
|
|
|
+ if (!flat){
|
|
|
return R.fail("删除失败");
|
|
|
}
|
|
|
return R.ok();
|