|
@@ -12,6 +12,7 @@ import com.qx.didi.service.impl.*;
|
|
|
import com.qx.didi.util.ApiRuntimeException;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
@@ -24,7 +25,7 @@ import java.io.StringWriter;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
|
|
|
|
-
|
|
|
+@Slf4j
|
|
|
@Api(tags = {"数据显示"})
|
|
|
@RestController
|
|
|
@RequestMapping("/showData")
|
|
@@ -185,7 +186,7 @@ public class ShowDataController {
|
|
|
response.setSohTime(sohDate);
|
|
|
response.setSohY(sohData);
|
|
|
|
|
|
-
|
|
|
+ log.info(param.getSn() + "结果返回");
|
|
|
return ApiDTO.ok(response);
|
|
|
} catch (Exception e) {
|
|
|
throw new ApiRuntimeException(500, e.toString());
|