便利店
This commit is contained in:
parent
70553d8615
commit
f8bf519927
@ -25,7 +25,7 @@ public class LJStaffController extends BaseController {
|
||||
*/
|
||||
@GetMapping("/list")
|
||||
public ResponseObject list(LJStaff staff,
|
||||
@RequestParam(value = "pageNo",defaultValue = "1") Integer pageNo,
|
||||
@RequestParam(value = "page",defaultValue = "1") Integer pageNo,
|
||||
@RequestParam(value = "pageSize",defaultValue = "10") Integer pageSize){
|
||||
Page page =new Page(pageNo,pageSize);
|
||||
IPage<LJStaff> list = mtStaffService.selectStaffList(page,staff);
|
||||
|
@ -33,6 +33,8 @@ public class ShiroConfig {
|
||||
filterMap.put("/backendApi/login/doLogin","anon");
|
||||
filterMap.put("/clientApi/captcha/getCode","anon");
|
||||
filterMap.put("/static/**","anon");
|
||||
//会员模板导出
|
||||
filterMap.put("/excel/export","anon");
|
||||
filterMap.put("/**","commonFilter");
|
||||
filter.setFilterChainDefinitionMap(filterMap);
|
||||
filter.setLoginUrl("/login");
|
||||
|
Loading…
Reference in New Issue
Block a user