xieb
2023-08-09 0cc4acf4a454955b7f535cc0d31e18c2a401f14c
skjcmanager/skjcmanager-service/skjcmanager-user/src/main/java/cn/gistack/system/user/sync/controller/UserPushController.java
@@ -12,6 +12,7 @@
import org.springblade.core.tenant.annotation.NonDS;
import org.springblade.core.tool.api.R;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -37,7 +38,7 @@
   private final static String method = "post";
   @PostMapping("/userpush")
   public R userPush(ApiPushDTO apiPushDTO) {
   public R userPush(@RequestBody ApiPushDTO apiPushDTO) {
      String syncData = SecurityUtil.decryptAES(apiPushDTO.getSyncData(), appSecret);
      List<AccountBean> accountBeanList = JSONArray.parseArray(syncData, AccountBean.class);