ServiceImpl.java.vm 699 Bytes
Newer Older
lanbaoming's avatar
lanbaoming committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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 {

}