feat(material): 新增材料相关接口

This commit is contained in:
han0
2023-11-11 12:24:39 +08:00
parent 6ff7bf0caa
commit 6fbe40104c
13 changed files with 521 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
package ${package.Service};
import ${package.Entity}.${entity};
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import ${superServiceClassPackage};
import org.springframework.stereotype.Service;
<#if kotlin>
class ${entity}Service : ${superServiceClass}<BaseMapper<${entity}>, ${entity}>
<#else>
@Service
public class ${entity}Service extends ${superServiceClass}<BaseMapper<${entity}>, ${entity}> {
}
</#if>