便利店

This commit is contained in:
cun-nan 2023-10-28 10:17:57 +08:00
parent 70553d8615
commit f8bf519927
2 changed files with 3 additions and 1 deletions

View File

@ -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);

View File

@ -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");