All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templet.serviceimpl.vm Maven / Gradle / Ivy

There is a newer version: 5.2.8-zookeeper
Show newest version
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