模版新增修改关联的相关实现

This commit is contained in:
潘荣晟
2025-09-16 18:03:42 +08:00
parent ddfdb9d491
commit edebe3a52a
30 changed files with 1383 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package cn.iocoder.yudao.module.tmpltp.enums;
import cn.iocoder.yudao.framework.common.exception.ErrorCode;
public interface ErrorCodeConstants {
// ========== 示例模块 1-001-000-000 ==========
ErrorCode TMPL_TP_NOT_EXISTS = new ErrorCode(1_027_000_500, "模板分类不存在");
}