conf.autoCodeTemplate.DaoImpl.tpl Maven / Gradle / Ivy
The newest version!
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package {srcPackage}.dao.impl;
import com.mycomm.dao.dao4comm.base.MyEntityManager;
import {srcPackage}.beans.{simpleClassName};
import {srcPackage}.dao.{simpleClassName}Dao;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Repository;
/**
*
* @author jw362j
*/
@Repository("my{simpleClassName}Dao")
@Scope("singleton")
public class My{simpleClassName}DaoImpl extends MyEntityManager<{simpleClassName}> implements {simpleClassName}Dao{
}