mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
Merge branch 'dev' into merge_adapay
# Conflicts: # jsowell-pile/src/main/java/com/jsowell/pile/service/ISettleOrderReportService.java # jsowell-pile/src/main/java/com/jsowell/pile/service/impl/SettleOrderReportServiceImpl.java
This commit is contained in:
@@ -168,6 +168,9 @@ public class RedisCache {
|
||||
public Long getCacheLong(final String key) {
|
||||
Long l = null;
|
||||
Object cacheObject = getCacheObject(key);
|
||||
if (Objects.isNull(cacheObject)) {
|
||||
return null;
|
||||
}
|
||||
if (cacheObject instanceof Integer) {
|
||||
l = ((Integer) cacheObject).longValue();
|
||||
} else if (cacheObject instanceof Long) {
|
||||
|
||||
@@ -7,6 +7,8 @@ public enum ScenarioEnum {
|
||||
ORDER("order", "支付订单"),
|
||||
|
||||
BALANCE("balance", "支付余额"),
|
||||
|
||||
OCCUPY("occupy", "占桩订单"),
|
||||
;
|
||||
|
||||
private String value;
|
||||
|
||||
Reference in New Issue
Block a user