ludc
2023-09-12 114c0b5aa8bffa7120d7294ba0631d2ef78711c1
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodeApplyOrgPersonController.java
@@ -7,10 +7,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
/**
 * 申请人员部门控制器
@@ -37,7 +34,7 @@
    * @throws Throwable
    */
   @PostMapping("/syncDataForPerson")
   public ResultOrgData syncDataForPerson(@RequestParam PersonData personData)  {
   public ResultOrgData syncDataForPerson(@RequestBody PersonData personData)  {
      String result="";
      try {
         return universalInterfaceI.syncDataForPerson(personData);
@@ -55,7 +52,7 @@
    * @throws Throwable
    */
   @PostMapping("/syncDataForOrg")
   public ResultOrgData syncDataForOrg(@RequestParam OrgData orgData)  {
   public ResultOrgData syncDataForOrg(@RequestBody OrgData orgData)  {
      String result="";
      try {
         return universalInterfaceI.syncDataForOrg(orgData);