Commit 630736f9 authored by fangxinjiang's avatar fangxinjiang

社保自动化配置-fxj

parent 017b5d76
...@@ -33,6 +33,7 @@ import io.swagger.v3.oas.annotations.Operation; ...@@ -33,6 +33,7 @@ import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor; import lombok.RequiredArgsConstructor;
import lombok.SneakyThrows; import lombok.SneakyThrows;
import lombok.extern.log4j.Log4j2;
import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;
...@@ -45,6 +46,7 @@ import java.util.List; ...@@ -45,6 +46,7 @@ import java.util.List;
* @author fxj * @author fxj
* @date 2025-10-15 14:50:53 * @date 2025-10-15 14:50:53
*/ */
@Log4j2
@RestController @RestController
@RequiredArgsConstructor @RequiredArgsConstructor
@RequestMapping("/tsocialalertinfo") @RequestMapping("/tsocialalertinfo")
...@@ -69,6 +71,7 @@ public class TSocialAlertInfoController { ...@@ -69,6 +71,7 @@ public class TSocialAlertInfoController {
return R.failed(CommonConstants.USER_FAIL); return R.failed(CommonConstants.USER_FAIL);
} }
tSocialAlertInfo.setReceiveUser(user.getId()); tSocialAlertInfo.setReceiveUser(user.getId());
log.error("tSocialAlertInfo:" + tSocialAlertInfo.getReceiveUser());
return new R<>(tSocialAlertInfoService.getTSocialAlertInfoPage(page, tSocialAlertInfo)); 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