新增 用户UI操作日志开关功能

This commit is contained in:
fanghongchao
2018-12-03 11:42:38 +08:00
parent d7d56af1f7
commit 52846896fa
6 changed files with 222 additions and 24 deletions
@@ -31,4 +31,22 @@ public class CommCode {
* 新增修改删除用户信息
*/
public static final String LOG_TYPE_USEROPT = "USER_INFO_OPT";
/**
* 操作日志级别:应用
*/
public static final Byte OPLOG_APP_LEVEL = 0;
/**
* 操作日志级别:模块
*/
public static final Byte OPLOG_MODEL_LEVEL = 1;
/**
* 操作日志级别:业务
*/
public static final Byte OPLOG_LOG_TYPE_LEVEL = 1;
/**
* 操作日志级别:操作
*/
public static final Byte OPLOG_OPT_TYPE_LEVEL = 1;
}