Commit 2d393b05 by 刘旭

test

1 parent 86bc86e3
Showing with 5 additions and 3 deletions
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
......
...@@ -2,12 +2,15 @@ package org.var.c; ...@@ -2,12 +2,15 @@ package org.var.c;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.dituhui.saas.framework.log.BaseLog;
@Service @Service
public class TestC { public class TestC {
public String test(){ public BaseLog test(){
//注释 //注释
System.out.println("aaa"); System.out.println("aaa");
return "bbb"; BaseLog bl = new BaseLog("log", "label");
return bl;
} }
} }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!