mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 09:08:24 +08:00
feat: 内置 serviceImpl-Solon 模板。
This commit is contained in:
parent
eadb8a32c9
commit
3d5e73b59d
@ -0,0 +1,18 @@
|
|||||||
|
package #(packageConfig.serviceImplPackage);
|
||||||
|
|
||||||
|
import com.mybatisflex.solon.service.impl.ServiceImpl;
|
||||||
|
import #(packageConfig.entityPackage).#(table.buildEntityClassName());
|
||||||
|
import #(packageConfig.mapperPackage).#(table.buildMapperClassName());
|
||||||
|
import #(packageConfig.servicePackage).#(table.buildServiceClassName());
|
||||||
|
import org.noear.solon.annotation.ProxyComponent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* #(table.getComment()) 服务层实现。
|
||||||
|
*
|
||||||
|
* @author #(javadocConfig.getAuthor())
|
||||||
|
* @since #(javadocConfig.getSince())
|
||||||
|
*/
|
||||||
|
@ProxyComponent
|
||||||
|
public class #(table.buildServiceImplClassName()) extends ServiceImpl<#(table.buildMapperClassName()), #(table.buildEntityClassName())> implements #(table.buildServiceClassName()) {
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user