package ${basePackage}.module.${table.moduleName}.service.impl; import org.springframework.stereotype.Service; import cn.iocoder.yudao.framework.common.base.AbstractService; import ${basePackage}.module.${table.moduleName}.entities.${table.className}; import ${basePackage}.module.${table.moduleName}.mapper.${table.className}Mapper; import ${basePackage}.module.${table.moduleName}.service.${table.className}Service; /** * ${table.classComment} ServiceImpl * @author ${table.author} * @date ${datetime} * Copyright (c) 2022 */ @Service public class ${table.className}ServiceImpl extends AbstractService<${table.className}Mapper, ${table.className}> implements ${table.className}Service { }