You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
package com.engine.ditoSsologin.constant;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @version 1.0
|
|
|
|
|
* @Title ecology-9
|
|
|
|
|
* @Company 泛微软件
|
|
|
|
|
* @CreateDate 2022/10/26
|
|
|
|
|
* @Description ${description}
|
|
|
|
|
* @Author Lee
|
|
|
|
|
*/
|
|
|
|
|
public class DitoConstant {
|
|
|
|
|
/**
|
|
|
|
|
* 单点登录token缓存key
|
|
|
|
|
*/
|
|
|
|
|
public static final String SSO_LOGIN_ACCESS_TOKEN = "SSO_LOGIN_ACCESS_TOKEN";
|
|
|
|
|
public static final String SSO_LOGIN_USER_ACCESS_TOKEN = "USER_ACCESS_TOKEN_";
|
|
|
|
|
/**
|
|
|
|
|
* 单点登录接口返回成功状态码
|
|
|
|
|
*/
|
|
|
|
|
public static final String SUCCESS_RESULT_CODE = "0";
|
|
|
|
|
/**
|
|
|
|
|
* 同步标识:0全量,1增量
|
|
|
|
|
*/
|
|
|
|
|
public static final String SYNC_ALL = "0";
|
|
|
|
|
public static final String SYNC_INCREMENT = "1";
|
|
|
|
|
/**
|
|
|
|
|
* 是否有效:0有效,1无效
|
|
|
|
|
*/
|
|
|
|
|
public static final String EFFECTIVE_YES = "0";
|
|
|
|
|
public static final String EFFECTIVE_NO = "1";
|
|
|
|
|
/**
|
|
|
|
|
* 0 -添加流程1 -修改流程名称(不能修改流程代码)2 -删除流程
|
|
|
|
|
* 0-添加权限 1-删除权限
|
|
|
|
|
*/
|
|
|
|
|
public static final String ACTION_TYPE_ADD = "0";
|
|
|
|
|
public static final String ACTION_TYPE_UPDATE = "1";
|
|
|
|
|
public static final String ACTION_TYPE_DELETE = "2";
|
|
|
|
|
public static final String ACTION_TYPE_ADD_USER= "0";
|
|
|
|
|
public static final String ACTION_TYPE_DELETE_USER = "1";
|
|
|
|
|
/**
|
|
|
|
|
* 同步作用:0流程推送--有其他用途可追加
|
|
|
|
|
*/
|
|
|
|
|
public static final String TIME_NODE_USE_WORKFLOW_SYNC = "0";
|
|
|
|
|
}
|