feat:代码生成脚本

This commit is contained in:
xiang
2026-01-30 21:41:20 +08:00
parent 217dc6879d
commit 59b3dd6320
123 changed files with 8832 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
<#if isWithPackage?exists && isWithPackage==true>package ${packageName}.service;</#if>
<#if isAutoImport?exists && isAutoImport==true>
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.IService;
</#if>
/**
* @description ${classInfo.classComment}服务层
* @author ${authorName}
* @date ${.now?string('yyyy-MM-dd')}
*/
@Service
public interface ${classInfo.className}Service extends IService<${classInfo.className}> {
}