Commit 655cc466 authored by fangxinjiang's avatar fangxinjiang

社保自动化配置-fxj

parent 2af1d1aa
......@@ -64,6 +64,11 @@ public class TSocialAlertInfoController {
@Operation(description = "简单分页查询")
@GetMapping("/page")
public R<IPage<TSocialAlertInfo>> getTSocialAlertInfoPage(Page<TSocialAlertInfo> page, TSocialAlertInfoSearchVo tSocialAlertInfo) {
YifuUser user = SecurityUtils.getUser();
if (null == user || null == user.getId()){
return R.failed(CommonConstants.USER_FAIL);
}
tSocialAlertInfo.setReceiveUser(user.getId());
return new R<>(tSocialAlertInfoService.getTSocialAlertInfoPage(page, tSocialAlertInfo));
}
......
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