Commit 85b38399 authored by yanzhengyang's avatar yanzhengyang

日常报销接口bug修复

parent 794e595a
...@@ -36,7 +36,6 @@ public class FyglDailyReimbursementController extends BaseController ...@@ -36,7 +36,6 @@ public class FyglDailyReimbursementController extends BaseController
* 查询日常报销列表 * 查询日常报销列表
*/ */
// @PreAuthorize("@ss.hasPermi('dailyReimbursement:dailyReimbursement:list')") // @PreAuthorize("@ss.hasPermi('dailyReimbursement:dailyReimbursement:list')")
@Anonymous
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo list(FyglDailyReimbursementVo fyglDailyReimbursementVO) public TableDataInfo list(FyglDailyReimbursementVo fyglDailyReimbursementVO)
{ {
...@@ -58,7 +57,6 @@ public class FyglDailyReimbursementController extends BaseController ...@@ -58,7 +57,6 @@ public class FyglDailyReimbursementController extends BaseController
//获取所有项目名字和id,用于搜索 //获取所有项目名字和id,用于搜索
@GetMapping("/projectList") @GetMapping("/projectList")
@Anonymous
public AjaxResult projectList() public AjaxResult projectList()
{ {
List<FyglProjectList> projectList = fyglDailyReimbursementService.getProjectList(); List<FyglProjectList> projectList = fyglDailyReimbursementService.getProjectList();
...@@ -66,7 +64,6 @@ public class FyglDailyReimbursementController extends BaseController ...@@ -66,7 +64,6 @@ public class FyglDailyReimbursementController extends BaseController
} }
//获取所有项目名字和id //获取所有项目名字和id
@GetMapping("/projectDetail/{id}") @GetMapping("/projectDetail/{id}")
@Anonymous
public AjaxResult projectList(@PathVariable("id") Long id) public AjaxResult projectList(@PathVariable("id") Long id)
{ {
FyglProjectDTO projectDetail = fyglDailyReimbursementService.getProjectDetail(id); FyglProjectDTO projectDetail = fyglDailyReimbursementService.getProjectDetail(id);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment