12 lines
236 B
Plaintext
12 lines
236 B
Plaintext
|
|
package com.sercurityControl.proteam.util;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 关于缓存的Key集合
|
||
|
|
*/
|
||
|
|
public interface CacheKey {
|
||
|
|
|
||
|
|
String IMPORT_GET_COMPANY_ID = "import::getCompanyIdByName:";
|
||
|
|
|
||
|
|
String IMPORT_GET_JOB_ID = "import::getJobIdByName:";
|
||
|
|
}
|