Commit 587a0716 authored by qinhu's avatar qinhu

产值审核-只导当前用户

parent f272d2f1
......@@ -132,7 +132,9 @@ public class NonStandardApplyServiceImpl extends ServiceImpl<NonStandardApplyMap
@Override
public void exportList(String filename, Integer userId, String name, HttpServletResponse response) {
Map<String, Object> params = new HashMap<>();
params.put("userId", userId);
LoginUser loginUser = userService.getLoginUser();
params.put("userId", loginUser.getId());
params.put("name", name);
List<Map<String, Object>> list = nonStandardApplyMapper.exportList(params);
......
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