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