1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.vci.constant;
 
/**
 * web的多语编码
 */
public class WebLangCodeConstant {
 
    /**
     * 生命周期缺少事件
     */
    public static final String LIFE_CYCLE_ROUTER_NULL = "lifeCycleRouteNull";
 
    /**
     * 跃迁失败
     */
    public static final String LIFE_CYCLE_TRANS_ERROR = "lifeCycleTransError";
 
    /**
     * 文件上传超过了密级要求
     */
    public static final String FILE_UPLOAD_SECRET_ERROR = "fileUploadSecretError";
 
    /**
     * 文件上传时,密级超过了数据的密级
     */
    public static final String FILE_UPLOAD_DATA_SECRET_ERROR = "fileUploadDataSecretError";
 
    /**
     * 文件名称重复
     */
    public static final String FILE_NAME_REPEAT = "fileNameRepeat";
 
}