简单DAO调用方法示例
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
564 B

package com.tptj.demo.hg.simple.dao;
import com.fr.decision.fun.impl.AbstractControllerRegisterProvider;
import com.fr.intelli.record.Focus;
import com.fr.record.analyzer.EnableMetrics;
/**
* @author 秃破天际
* @version 10.0
* Created by 秃破天际 on 2021/8/27
**/
@EnableMetrics
public class DemoServer extends AbstractControllerRegisterProvider {
@Override
@Focus(id = "com.tptj.demo.hg.simple.dao", text = "SIMPLE DAO")
public Class<?>[] getControllers() {
return new Class[]{
DemoResource.class
};
}
}