|
|
@ -16,6 +16,7 @@ import org.springframework.http.MediaType; |
|
|
|
import org.springframework.web.bind.annotation.PathVariable; |
|
|
|
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; |
|
|
|
import java.util.Set; |
|
|
@ -113,6 +114,13 @@ public interface OperCustomizeOpenFeignClient { |
|
|
|
@PostMapping("/oper/customize/resicategorystatsconfig/resicategorywarninfobyid") |
|
|
|
Result<IcResiCategoryWarnConfigDTO> resiCategoryWarnInfoById(@RequestBody IcResiCategoryWarnConfigDTO dto); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询志愿者类型 |
|
|
|
* @param volunteers |
|
|
|
* @author zxc |
|
|
|
* @date 2021/11/8 10:02 上午 |
|
|
|
*/ |
|
|
|
@PostMapping("/oper/customize/icformitemoptions/volunteerlabelbyvalues") |
|
|
|
Result<List<String>> volunteerLabelByValues(@RequestBody List<String> volunteers,@RequestParam("customerId") String customerId); |
|
|
|
|
|
|
|
} |
|
|
|