|
@@ -2,6 +2,7 @@ package cn.ezhizao.project.business.controller;
|
|
|
|
|
|
import cn.ezhizao.framework.web.controller.BaseController;
|
|
|
import cn.ezhizao.framework.web.domain.AjaxResult;
|
|
|
+import cn.ezhizao.framework.web.page.TableDataInfo;
|
|
|
import cn.ezhizao.project.business.domain.*;
|
|
|
import cn.ezhizao.project.business.service.*;
|
|
|
import cn.ezhizao.project.system.domain.SysDictData;
|
|
@@ -12,6 +13,7 @@ import cn.ezhizao.project.system.service.ISysUserService;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
@@ -124,6 +126,12 @@ public class Sfc10300Controller extends BaseController {
|
|
|
return toAjax(false);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @GetMapping(value = "/getP2ProcessWrbz/{type}")
|
|
|
+ private TableDataInfo getP2ProcessWrbz (@PathVariable("type") String type) {
|
|
|
+ List <Sfc10300> sfc10300List = sfc10300Service.getProcessWrbz();
|
|
|
+ return getDataTable( sfc10300List);
|
|
|
+ }
|
|
|
/**
|
|
|
* 根据字典类型和字典值,获取字典数据
|
|
|
*
|