代码生成器,增加 excel 导出功能

This commit is contained in:
YunaiV
2021-02-11 23:02:53 +08:00
parent 392dfa47c3
commit eb3d0386ee
35 changed files with 796 additions and 103 deletions

View File

@@ -0,0 +1,15 @@
package cn.iocoder.dashboard.modules.tool.enums;
import cn.iocoder.dashboard.common.exception.ErrorCode;
/**
* Tool 错误码枚举类
*
* tool 系统,使用 1-003-000-000 段
*/
public interface ToolErrorCodeConstants {
// ========== 字典类型(测试) 1003000000 ==========
ErrorCode TEST_DEMO_NOT_EXISTS = new ErrorCode(1003000000, "测试示例不存在");
}

View File

@@ -1 +0,0 @@
package cn.iocoder.dashboard.modules.tool.enums;