serviceImplTemplate.ftl 473 B

12345678910111213
  1. package ${bussiPackage}.service.impl.${entityPackage};
  2. import org.springframework.stereotype.Service;
  3. import org.springframework.transaction.annotation.Transactional;
  4. import ${bussiPackage}.service.${entityPackage}.${entityName}ServiceI;
  5. import org.jeecgframework.core.common.service.impl.CommonServiceImpl;
  6. @Service("${entityName?uncap_first}Service")
  7. @Transactional
  8. public class ${entityName}ServiceImpl extends CommonServiceImpl implements ${entityName}ServiceI {
  9. }