|
|
@ -3,28 +3,14 @@ package com.epmet.feign; |
|
|
|
import com.epmet.commons.tools.constant.ServiceConstant; |
|
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
|
import com.epmet.dto.*; |
|
|
|
import com.epmet.dto.CustomerStaffDTO; |
|
|
|
import com.epmet.dto.CustomerStaffGridDTO; |
|
|
|
import com.epmet.dto.StaffGridListDTO; |
|
|
|
import com.epmet.dto.form.AddDepartmentStaffFormDTO; |
|
|
|
import com.epmet.dto.form.DepartmentInStaffFormDTO; |
|
|
|
import com.epmet.dto.form.StaffInfoFromDTO; |
|
|
|
import com.epmet.dto.form.StaffSubmitFromDTO; |
|
|
|
import com.epmet.dto.form.StaffsInAgencyFromDTO; |
|
|
|
import com.epmet.dto.result.DepartInStaffListResultDTO; |
|
|
|
import com.epmet.dto.result.StaffDetailResultDTO; |
|
|
|
import com.epmet.dto.result.StaffInfoResultDTO; |
|
|
|
import com.epmet.dto.result.StaffInitResultDTO; |
|
|
|
import com.epmet.dto.form.*; |
|
|
|
import com.epmet.dto.result.*; |
|
|
|
import com.epmet.dto.CustomerStaffDTO; |
|
|
|
import com.epmet.dto.CustomerStaffGridDTO; |
|
|
|
import com.epmet.dto.StaffGridListDTO; |
|
|
|
import com.epmet.feign.fallback.EpmetUserFeignClientFallBack; |
|
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
|
import org.springframework.http.MediaType; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
@ -169,4 +155,13 @@ public interface EpmetUserFeignClient { |
|
|
|
**/ |
|
|
|
@PostMapping(value = "/epmetuser/customerstaff/getcustomerstafflist", consumes = MediaType.APPLICATION_JSON_UTF8_VALUE) |
|
|
|
Result<CustomerStaffListResultDTO> getCustomerStaffList(List<String> staffIdList); |
|
|
|
|
|
|
|
/** |
|
|
|
* desc:删除审核中的徽章认证记录 |
|
|
|
* @param customerId |
|
|
|
* @param gridId |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@PostMapping("/epmetuser/badge/deleteBadgeCertificateAuditing") |
|
|
|
Result<Integer> deleteBadgeCertificateAuditing(@RequestParam("customerId") String customerId, @RequestParam("gridId") String gridId); |
|
|
|
} |
|
|
|