| | |
| | | |
| | | |
| | | public void setTypeAction(PLTypeAction typeAction) { |
| | | String temp = RedisUtil.getInstance().hget(getName(), typeAction.typeName.toLowerCase()); |
| | | String temp = RedisUtil.getInstance().hget(getName(), "MAP-" + typeAction.typeName.toLowerCase()); |
| | | if (StringUtils.isBlank(temp)) |
| | | return; |
| | | |
| | |
| | | if (!lstOid.contains(typeAction.plOId)) { |
| | | lstOid.add(typeAction.plOId); |
| | | |
| | | RedisUtil.getInstance().hset(getName(), typeAction.typeName.toLowerCase(), String.join(";", lstOid)); |
| | | RedisUtil.getInstance().hset(getName(), "MAP-" + typeAction.typeName.toLowerCase(), String.join(";", lstOid)); |
| | | } |
| | | } |
| | | |