TestC.java 289 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 package org.var.c; import org.springframework.stereotype.Service; import com.dituhui.saas.framework.log.BaseLog; @Service public class TestC { public BaseLog test(){ //注释 System.out.println("aaa"); BaseLog bl = new BaseLog("log", "label"); return bl; } }