|
|
@ -269,4 +269,15 @@ public class RedisKeys { |
|
|
|
public static String getKpiIssueTimeLimitKey() { |
|
|
|
return rootPrefix.concat("config:kpi:issuetimelimit"); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 获取工作端列表 |
|
|
|
* |
|
|
|
* @return java.lang.String |
|
|
|
* @author yujintao |
|
|
|
* @date 2019/9/3 16:28 |
|
|
|
*/ |
|
|
|
public static String getWorkUserListKey(String partyFlag, String authenticatedFlag, Long userId,Integer pageIndex,Integer pageSize) { |
|
|
|
return rootPrefix.concat("work:user:List:").concat(partyFlag + ":").concat(authenticatedFlag + ":").concat(pageIndex + ":").concat(pageSize + ":").concat(userId.toString()); |
|
|
|
} |
|
|
|
} |
|
|
|