xieb
2023-06-17 88176914e8edc506b02eab131c431cad0eda9619
skjcmanager/skjcmanager-service-api/skjcmanager-sm-api/src/main/java/cn/gistack/sm/sjztmd/feign/IAttResManagePersonClient.java
@@ -5,6 +5,7 @@
import org.springblade.core.tool.api.R;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
@@ -27,6 +28,8 @@
   String GET_AD_BASE = API_PREFIX + "/getAdBaseById";
   String GET_PERSONG_LIST_BY_RES_GUID = API_PREFIX + "/getPersonListByResGuid";
   String GET_USER_LIST_BY_RES_GUID = API_PREFIX + "/getUserListByResGuid";
   String SYNCHARONIZATION_ADD_USER = API_PREFIX + "/synchronizationAddUser";
   String SYNCHARONIZATION_UPDATE_USER = API_PREFIX + "/synchronizationUpdateUser";
   @GetMapping(QUERY_LIST_BY_PHONE)
   R queryListByPhone(@RequestParam("userPhone") String userPhone);
@@ -50,4 +53,11 @@
    */
   @GetMapping(GET_USER_LIST_BY_RES_GUID)
   List<PersonVO> getUserListByResGuid(@RequestParam("res_cd") String res_cd);
   @PostMapping(SYNCHARONIZATION_ADD_USER)
   int syncharonization_add_user();
   @PostMapping(SYNCHARONIZATION_UPDATE_USER)
   int syncharonization_update_user();
}