Commit c7b9ea560825ee73d38010f01d84df4adff30708
Exists in
master
and in
1 other branch
Merge remote-tracking branch 'origin/master'
Showing 3 changed files
platform-dal/src/main/java/com/lyms/platform/query/PatientsQuery.java
View file @
c7b9ea5
| ... | ... | @@ -607,7 +607,7 @@ |
| 607 | 607 | |
| 608 | 608 | |
| 609 | 609 | if (StringUtils.isNotEmpty(rFactor)) { |
| 610 | - condition = condition.and("riskFactorId", rFactor, MongoOper.ALL); | |
| 610 | + condition = condition.and("riskFactorId", rFactor, MongoOper.LIKE); | |
| 611 | 611 | } |
| 612 | 612 | if (-1 != yn) { |
| 613 | 613 | condition = condition.and("yn", yn, MongoOper.IS); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/session/strategy/LocalCacheSessionStrategy.java
View file @
c7b9ea5
| ... | ... | @@ -38,7 +38,7 @@ |
| 38 | 38 | private Map<String, LoginContext> localSessionCache = new ConcurrentHashMap<>(); |
| 39 | 39 | |
| 40 | 40 | public static Cache<String,LoginContext> cache = CacheBuilder.newBuilder() |
| 41 | - .expireAfterAccess(30, TimeUnit.MINUTES) | |
| 41 | + .expireAfterAccess(6, TimeUnit.HOURS) | |
| 42 | 42 | .build(); |
| 43 | 43 | |
| 44 | 44 | @Override |
platform-operate-api/src/main/resources/database.properties
View file @
c7b9ea5