Commit a8fd6a27 by hufengqin

change

parent 1ce06221
/**/target/
package com.panda.zgqc.app.controller; package com.panda.zgqc.app.controller;
import com.panda.zgqc.app.annotation.SystemLog;
import com.panda.zgqc.app.domain.Agent; import com.panda.zgqc.app.domain.Agent;
import com.panda.zgqc.app.service.IAgentService; import com.panda.zgqc.app.service.IAgentService;
import com.panda.common.entity.AjaxResult; import com.panda.common.entity.AjaxResult;
...@@ -24,6 +25,7 @@ public class AgentController { ...@@ -24,6 +25,7 @@ public class AgentController {
@GetMapping("/list") @GetMapping("/list")
@SystemLog(description = "查询列表数据")
public AjaxResult list(Agent agent) { public AjaxResult list(Agent agent) {
return AjaxResult.success(agentService.list(lambdaQuery(agent))); return AjaxResult.success(agentService.list(lambdaQuery(agent)));
} }
......
...@@ -53,7 +53,7 @@ logging: ...@@ -53,7 +53,7 @@ logging:
root: info root: info
pattern: pattern:
console: '%X{RequestNo}-%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36}[%L] - %msg%n' console: '%X{RequestNo}-%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36}[%L] - %msg%n'
# config: classpath:log4j2-spring.xml config: classpath:log4j2-spring.xml
file: file:
path: /log path: /log
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment