| | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ${tableComment} Service实现 |
| | | * |
| | | * name:${className} |
| | | * package:${basePackage}.${controllerPackage} |
| | | * description:${tableComment}服务接口实现 |
| | | * |
| | | * @author ${author} |
| | | * @date ${date} |
| | | * @since JDK1.8 |
| | | */ |
| | | @Service |
| | | @RequiredArgsConstructor |
| | | @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) |
| | | public class ${className}ServiceImpl extends ServiceImpl<${className}Mapper, ${className}> implements I${className}Service { |
| | | public class ${className}ServiceImpl extends ServiceImpl |
| | | <${className}Mapper, ${className}> implements I${className}Service { |
| | | |
| | | private final ${className}Mapper ${className?uncap_first}Mapper; |
| | | |