mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
查询站点订单日报详情
This commit is contained in:
@@ -9,15 +9,17 @@ public class CacheConstants {
|
||||
|
||||
public static final int cache_expire_time_1m = 60;
|
||||
|
||||
public static final int cache_expire_time_5m = 60 * 5;
|
||||
public static final int cache_expire_time_5m = cache_expire_time_1m * 5;
|
||||
|
||||
public static final int cache_expire_time_10m = 60 * 10;
|
||||
public static final int cache_expire_time_10m = cache_expire_time_1m * 10;
|
||||
|
||||
public static final int cache_expire_time_1h = 60 * 60;
|
||||
public static final int cache_expire_time_1h = cache_expire_time_1m * 60;
|
||||
|
||||
public static final int cache_expire_time_12h = 60 * 60 * 12;
|
||||
public static final int cache_expire_time_12h = cache_expire_time_1h * 12;
|
||||
|
||||
public static final int cache_expire_time_1d = 60 * 60 * 24;
|
||||
public static final int cache_expire_time_1d = cache_expire_time_1h * 24;
|
||||
|
||||
public static final int cache_expire_time_10d = cache_expire_time_1d * 10;
|
||||
|
||||
public static final String PUSH_STATION_CONNECTOR = "push_station_connector";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user