| | |
| | | import com.vci.ubcs.starter.web.util.LangBaseUtil; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springblade.core.secure.utils.AuthUtil; |
| | | import org.springblade.core.tenant.annotation.NonDS; |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | * @return |
| | | */ |
| | | @PostMapping("/lazy-list") |
| | | public R<List<LocalLog>> getSystemLogList(@RequestBody LocalLog localLog){ |
| | | public R<List<LocalLogVO>> getSystemLogList(@RequestBody LocalLog localLog){ |
| | | return R.data(logLocalService.getSystemLogList(localLog.getLogPath())); |
| | | } |
| | | |