|
@@ -1,11 +1,14 @@
|
|
|
package com.tzld.longarticle.recommend.server;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.tzld.longarticle.recommend.server.model.vo.IntermediateIndicatorsExport;
|
|
|
import com.tzld.longarticle.recommend.server.service.recommend.DataDashboardService;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
+import java.util.List;
|
|
|
|
|
|
@SpringBootTest(classes = Application.class)
|
|
|
@Slf4j
|
|
@@ -16,6 +19,7 @@ public class DataDashboardTest {
|
|
|
|
|
|
@Test
|
|
|
public void test() {
|
|
|
- dataDashboardService.intermediateIndicatorsData("20241008");
|
|
|
+ List<IntermediateIndicatorsExport> result = dataDashboardService.intermediateIndicatorsData("20241122");
|
|
|
+ log.info(JSONObject.toJSONString(result));
|
|
|
}
|
|
|
}
|