Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

刘旭 / var-c

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • var-c
  • ..
  • c
  • TestC.java
  • 刘旭's avatar
    test · 2d393b05
    刘旭 committed Sep 08, 2017
    2d393b05
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;
	}
}