2026-06-25 a26b31cc9f3ee9b21b1a754e80fa7359e8a7a8f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cn.iocoder.yudao.module.report.enums;
 
import cn.iocoder.yudao.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 项目不存在");
 
}