|
|
@ -8,10 +8,6 @@ import com.epmet.service.evaluationindex.extract.FactOriginTopicMainDailyService |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import com.epmet.service.evaluationindex.extract.FactOriginTopicMainDailyService; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -55,7 +51,7 @@ public class FactOriginController { |
|
|
|
* @Date 2020/9/15 13:39 |
|
|
|
**/ |
|
|
|
@PostMapping("topic") |
|
|
|
public Result topicDataCleaning(@RequestParam("customerId") String customerId, @RequestParam("dateId")String dateId) { |
|
|
|
public Result topicDataCleaning(String customerId,String dateId) { |
|
|
|
if (StringUtils.isNotBlank(customerId) && StringUtils.isNotBlank(dateId)) { |
|
|
|
factOriginTopicMainDailyService.topicCleaning(customerId,dateId); |
|
|
|
} |
|
|
|