package org.jeecg.modules.doc.constant;
|
|
public class Constant {
|
|
/**
|
* 权限标志
|
*/
|
public static final int HAVE = 1;
|
public static final int NONE = 0;
|
|
|
/**
|
* 权限MAP对应的KEY
|
*/
|
|
public static final String VISIT = "visitPrem";
|
public static final String DOWNLOAD = "downloadPrem";
|
public static final String MANAGE = "managePrem";
|
|
|
/**
|
* 删除标志
|
*/
|
|
public static final int DEL_TRUE = 1;
|
public static final int DEL_FALSE = 0;
|
|
|
/**
|
* 文件夹标志
|
*/
|
|
public static final int IS_DIR = 1;
|
public static final int IS_NOT_DIR = 0;
|
|
|
/**
|
* 日志类型
|
*/
|
|
public static final int OPERATION_UPLOAD = 0;
|
|
public static final int OPERATION_DOWNLOAD = 1;
|
|
public static final int OPERATION_DELETE = 2;
|
|
public static final int OPERATION_COPY = 3;
|
|
public static final int OPERATION_MOVE = 4;
|
|
public static final int OPERATION_UNZIP = 5;
|
|
public static final int OPERATION_SHARE = 6;
|
|
public static final int OPERATION_CREATE = 7;
|
|
public static final int OPERATION_UPDATE = 8;
|
|
public static final int OPERATION_RENAME = 9;
|
}
|