尝试
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package #(packageConfig.servicePackage);
|
||||
|
||||
import com.czg.utils.CzgUpdateChain;
|
||||
import com.mybatisflex.core.update.UpdateChain;
|
||||
import #(serviceConfig.buildSuperClassImport());
|
||||
import #(packageConfig.entityPackage).#(table.buildEntityClassName());
|
||||
|
||||
/**
|
||||
* #(table.getComment()) 服务层。
|
||||
*
|
||||
* @author #(javadocConfig.getAuthor())
|
||||
* @since #(javadocConfig.getSince())
|
||||
*/
|
||||
public interface #(table.buildServiceClassName()) extends #(serviceConfig.buildSuperClassName())<#(table.buildEntityClassName())> {
|
||||
|
||||
@Override
|
||||
default UpdateChain<#(table.buildEntityClassName())> updateChain() {
|
||||
return CzgUpdateChain.of(getMapper());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user