xiejun
2023-09-11 fc4d1e17b9ed87e34835316d0e8b89feebe32be6
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);