修改权限问题
This commit is contained in:
parent
b1b0d0db9c
commit
be8e401289
|
|
@ -92,7 +92,7 @@ public class StoreController {
|
||||||
*/
|
*/
|
||||||
@SysLog(value = "查询商户", businessType = BusinessType.QUERY)
|
@SysLog(value = "查询商户", businessType = BusinessType.QUERY)
|
||||||
@GetMapping("/info/{storeId}")
|
@GetMapping("/info/{storeId}")
|
||||||
@RequiresPermissions("ins:store:info")
|
//@RequiresPermissions("ins:store:info")
|
||||||
public AjaxResult info(@PathVariable Long storeId) {
|
public AjaxResult info(@PathVariable Long storeId) {
|
||||||
Store store = storeService.getById(storeId);
|
Store store = storeService.getById(storeId);
|
||||||
return AjaxResult.success(BeanUtil.copyProperties(store, StoreVO.class));
|
return AjaxResult.success(BeanUtil.copyProperties(store, StoreVO.class));
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@ public class WrkInfoController {
|
||||||
*/
|
*/
|
||||||
@SysLog(value = "派单/领取列表", businessType = BusinessType.QUERY)
|
@SysLog(value = "派单/领取列表", businessType = BusinessType.QUERY)
|
||||||
@GetMapping("/dispatch/page")
|
@GetMapping("/dispatch/page")
|
||||||
@RequiresPermissions("wrk:dispatch:page")
|
//@RequiresPermissions("wrk:dispatch:page")
|
||||||
public AjaxResult queryDispatchPage(@Validated WrkInfoQuery query) {
|
public AjaxResult queryDispatchPage(@Validated WrkInfoQuery query) {
|
||||||
// 派单领取列表, 就是 已经派出的工单以及领取的工单,
|
// 派单领取列表, 就是 已经派出的工单以及领取的工单,
|
||||||
return AjaxResult.success(wrkInfoService.queryDispatchPage(query));
|
return AjaxResult.success(wrkInfoService.queryDispatchPage(query));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue