提交 | 用户 | 时间 | ||
e7c126 | 1 | package com.iailab.module.report.enums; |
H | 2 | |
3 | import com.iailab.framework.common.exception.ErrorCode; | |
4 | ||
5 | /** | |
6 | * Report 错误码枚举类 | |
7 | * | |
8 | * report 系统,使用 1-003-000-000 段 | |
9 | */ | |
10 | public interface ErrorCodeConstants { | |
11 | ||
12 | // ========== GoView 模块 1-003-000-000 ========== | |
13 | ErrorCode GO_VIEW_PROJECT_NOT_EXISTS = new ErrorCode(1_003_000_000, "GoView 项目不存在"); | |
14 | ||
15 | } |