|
@ -25,6 +25,7 @@ import com.epmet.feign.EpmetAdminOpenFeignClient; |
|
|
import com.epmet.feign.EpmetCommonServiceOpenFeignClient; |
|
|
import com.epmet.feign.EpmetCommonServiceOpenFeignClient; |
|
|
import com.epmet.service.IcEpidemicSpecialAttentionService; |
|
|
import com.epmet.service.IcEpidemicSpecialAttentionService; |
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
|
import org.apache.commons.collections4.CollectionUtils; |
|
|
import org.apache.commons.io.FilenameUtils; |
|
|
import org.apache.commons.io.FilenameUtils; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.web.bind.annotation.*; |
|
|
import org.springframework.web.bind.annotation.*; |
|
@ -243,4 +244,16 @@ public class IcEpidemicSpecialAttentionController { |
|
|
return new Result<NatPieResultDTO>().ok(icEpidemicSpecialAttentionService.pie(tokenDto)); |
|
|
return new Result<NatPieResultDTO>().ok(icEpidemicSpecialAttentionService.pie(tokenDto)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 批量删除 ic_epidemic_special_attention |
|
|
|
|
|
* @param ids |
|
|
|
|
|
* @return |
|
|
|
|
|
*/ |
|
|
|
|
|
@PostMapping("delete") |
|
|
|
|
|
public Result delete(@RequestBody List<String> ids){ |
|
|
|
|
|
if(CollectionUtils.isNotEmpty(ids)){ |
|
|
|
|
|
icEpidemicSpecialAttentionService.delete(ids); |
|
|
|
|
|
} |
|
|
|
|
|
return new Result(); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|