templet.serviceimpl.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wk-code-generator-nb Show documentation
Show all versions of wk-code-generator-nb Show documentation
java web development framework, base on nutz
package ${packageName}.impl;
import cn.wizzer.framework.base.service.BaseServiceImpl;
import ${table.EntityFullClassName};
import ${packageName}.${table.ServiceClassName};
import com.alibaba.dubbo.config.annotation.Service;
import org.nutz.dao.Dao;
import org.nutz.ioc.loader.annotation.IocBean;
@IocBean(args = {"refer:dao"})
@Service(interfaceClass=${table.ServiceClassName}.class)
public class ${table.ServiceClassName}Impl extends BaseServiceImpl<${table.EntityClassName}> implements ${table.ServiceClassName} {
public ${table.ServiceClassName}Impl(Dao dao) {
super(dao);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy