mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
新增 查询充电启动状态缓存,查询启动充电结果逻辑
This commit is contained in:
@@ -170,6 +170,11 @@ public class CacheConstants {
|
||||
*/
|
||||
public static final String SELECT_PILE_CONNECTOR_INFO_LIST = "select_pile_connector_info_list:";
|
||||
|
||||
/**
|
||||
* 查询订单启动结果
|
||||
*/
|
||||
public static final String QUERY_ORDER_START_RESULT_BY_ORDER_CODE = "query_order_start_result_by_order_code:";
|
||||
|
||||
/**
|
||||
* 0x3b交易记录缓存key
|
||||
*/
|
||||
|
||||
@@ -19,7 +19,8 @@ public class ZipUtil {
|
||||
}
|
||||
String fileName = "images-" + System.currentTimeMillis() + ".zip";
|
||||
File zipFile = new File(fileName);
|
||||
try (FileOutputStream fos = new FileOutputStream(zipFile); ZipOutputStream zos = new ZipOutputStream(fos)) {
|
||||
try (FileOutputStream fos = new FileOutputStream(zipFile);
|
||||
ZipOutputStream zos = new ZipOutputStream(fos)) {
|
||||
for (int i = 0; i < imageUrls.size(); i++) {
|
||||
String imageUrl = imageUrls.get(i);
|
||||
URL url = new URL(imageUrl);
|
||||
|
||||
Reference in New Issue
Block a user