CommonConstants.java 675 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
package com.beecode.inz.common;

public interface CommonConstants {

	//数据模型元数据
	String BASE_INFO_ENTITY = "com.beecode.inz.common.datamodel.BaseInfo";

	//扩展业务特征元数据
	String INZ_BIZ_TRAIT = "com.beecode.inz.common.biztrait.InzBiztrait";
	
	//提醒任务名
	String REMIND_TASK = "remind_task";
	
	//员工元数据
	String STAFF_ENTITY = "com.beecode.bap.staff.datamodel.Staff";
	
	//工商查询历史记录tenant redis key
    String COMPANY_SEARCH_TENANT = "_company_search_tenant_";
	
	//工商查询历史记录 staff redis key
	String COMPANY_SEARCH_STAFF = "_company_search_staff_";
	
	String COMPANY_SEARCH_VALUE_SPLIT = ":&&&:";
	
}