package ${package.ServiceImpl}; import ${package.Entity}.${entity}; import ${package.Mapper}.${table.mapperName}; import ${package.Service}.${table.serviceName}; import ${superServiceImplClassPackage}; import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper; import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; import ${cfg.basePkg}.utils.ExcelUtil; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.springframework.web.multipart.MultipartFile; import java.util.List; import java.util.ArrayList; import org.springframework.transaction.annotation.Transactional; import ${cfg.basePkg}.enums.BatchTaskTypeEnum; #foreach($field in ${table.fields}) #if(${field.name.equals("name")}) #set($hasName=true) #end #end /** *

* $!{table.comment} 服务实现类 *

* * @author ${author} * @since ${date} */ @Service #if(${kotlin}) open class ${table.serviceImplName} : ${superServiceImplClass}<${table.mapperName}, ${entity}>(), ${table.serviceName} { } #else public class ${table.serviceImplName} extends ${superServiceImplClass}<${table.mapperName}, ${entity}> implements ${table.serviceName} { @Override @SuppressWarnings("unchecked") public Page<${table.entityName}> selectPage(Page page,${table.entityName} ${table.entityPath}){ return this.page(page, new QueryWrapper<${table.entityName}>(${table.entityPath})); } @Override public ${table.entityName} detail(Long id){ return this.getById(id); } @Override public Boolean add(${table.entityName} ${table.entityPath}){ return this.save(${table.entityPath}); } @Override public Boolean update(${table.entityName} ${table.entityPath}){ return this.updateById(${table.entityPath}); } @Override public Boolean delete(Long id){ //逻辑删除 return this.removeById(id); } } #end