AuthcInfoConstants.java 772 Bytes
Newer Older
PWF-WK01\pengwufeng committed
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
/**
 * 
 */
package com.beecode.inz.common;

/**
 * @author xlinyao
 *
 */
public interface AuthcInfoConstants {
	
	/**
	 * 当前用户
	 */
	public String CURRENTUSER = "currentUser";
	
	/**
	 * 当前用户名称
	 */
	public String USEANAME = "username";
	
	/**
	 * 当前用户ID
	 */
	public String USERID = "userId";
	
	/**
	 * 当前组织机构
	 */
	public String CURRENTORG = "currentOrg";
	
	//当前组织机构ID
	/**
	 * 当前组织机构ID
	 */
	public String ORGID = "orgId";
	
	//当前身份
	/**
	 * 当前身份
	 */
	public String CURRENTIDENTITY = "currentIdentity";
	
	//当前租户ID
	/**
	 * 当前租户ID
	 */
	public String TENANTID = "tenant-id";
	
	//当前职员
	/**
	 * 当前职员
	 */
	public String CURRENTSTAFF = "currentStaff";
}