ludc
2023-11-20 5e449c8bba2273313fd25457cae653a0f340c910
Source/UBCS/ubcs-ops/ubcs-log/src/main/java/com/vci/ubcs/log/controller/LogSystemController.java
文件名从 Source/UBCS/ubcs-ops/ubcs-log/src/main/java/com/vci/ubcs/core/log/controller/LogSystemController.java 修改
@@ -1,11 +1,11 @@
package com.vci.ubcs.core.log.controller;
package com.vci.ubcs.log.controller;
import com.vci.ubcs.core.log.service.ILogSystemService;
import com.vci.ubcs.log.service.ILogErrorService;
import com.vci.ubcs.log.service.ILogSystemService;
import com.vci.ubcs.log.entity.SystemLog;
import lombok.AllArgsConstructor;
import org.springblade.core.tenant.annotation.NonDS;
import org.springblade.core.tool.api.R;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
@@ -20,12 +20,11 @@
 */
@NonDS
@RestController
//@AllArgsConstructor
@AllArgsConstructor
@RequestMapping("/systemLog")
public class LogSystemController {
   @Autowired
   private ILogSystemService logSystemService;
   private final ILogSystemService logSystemService;
   @GetMapping("/lazy-list")
   private R<List<SystemLog>> getSystemLogList(@RequestParam String serviceName){