Frost 1 år sedan
förälder
incheckning
43955839a1

+ 0 - 2
folder_index.txt

@@ -1,2 +0,0 @@
-D:\Desktop\calls\400001\002\11\14,1676247980853,1676247980853
-D:\Desktop\calls\400001\002\11\15,1676250122410,1676250122410

+ 0 - 0
logs/error.log


+ 8 - 0
logs/info.log

@@ -0,0 +1,8 @@
+10:24:49.469 [main] INFO  com.wj.Application - [logStarting,55] - Starting Application using Java 1.8.0_202 on DESKTOP-MLVVD92 with PID 1848 (D:\Desktop\StoreRecordings\target\classes started by Frost in D:\Desktop\StoreRecordings)
+10:24:49.472 [main] INFO  com.wj.Application - [logStartupProfileInfo,631] - No active profile set, falling back to 1 default profile: "default"
+10:24:50.180 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9999"]
+10:24:50.181 [main] INFO  o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+10:24:50.181 [main] INFO  o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+10:24:50.284 [main] INFO  o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+10:24:50.545 [main] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9999"]
+10:24:50.568 [main] INFO  com.wj.Application - [logStarted,61] - Started Application in 1.381 seconds (JVM running for 2.603)

+ 0 - 0
logs/sql_info.log


+ 0 - 25
pom.xml

@@ -19,13 +19,6 @@
     </properties>
     <dependencies>
 
-        <!-- 热部署  -->
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-devtools</artifactId>
-            <optional>true</optional>
-        </dependency>
-
         <!-- 火山引擎 -->
         <dependency>
             <groupId>com.volcengine</groupId>
@@ -73,22 +66,6 @@
             <artifactId>spring-boot-starter-data-jpa</artifactId>
         </dependency>
 
-        <!-- 测试 -->
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-test</artifactId>
-            <scope>test</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.mockito</groupId>
-            <artifactId>mockito-inline</artifactId>
-            <version>3.4.0</version> <!-- 或者您可以使用最新的版本 -->
-            <scope>test</scope>
-        </dependency>
-
-
-
     </dependencies>
 
     <build>
@@ -103,10 +80,8 @@
                 <configuration>
                     <source>8</source>
                     <target>8</target>
-                    <compilerArgs>--enable-preview</compilerArgs>
                 </configuration>
             </plugin>
         </plugins>
     </build>
-
 </project>

+ 0 - 31
qodana.yaml

@@ -1,31 +0,0 @@
-#-------------------------------------------------------------------------------#
-#               Qodana analysis is configured by qodana.yaml file               #
-#             https://www.jetbrains.com/help/qodana/qodana-yaml.html            #
-#-------------------------------------------------------------------------------#
-version: "1.0"
-
-#Specify inspection profile for code analysis
-profile:
-  name: qodana.starter
-
-#Enable inspections
-#include:
-#  - name: <SomeEnabledInspectionId>
-
-#Disable inspections
-#exclude:
-#  - name: <SomeDisabledInspectionId>
-#    paths:
-#      - <path/where/not/run/inspection>
-
-projectJDK: 8 #(Applied in CI/CD pipeline)
-
-#Execute shell command before Qodana execution (Applied in CI/CD pipeline)
-#bootstrap: sh ./prepare-qodana.sh
-
-#Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
-#plugins:
-#  - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
-
-#Specify Qodana linter for analysis (Applied in CI/CD pipeline)
-linter: jetbrains/qodana-jvm:latest

+ 0 - 66
src/main/java/com/wj/other/DeleteObjectWithPrefixExample.java

@@ -1,66 +0,0 @@
-package com.wj.other;
-
-import com.volcengine.tos.*;
-import com.volcengine.tos.auth.StaticCredentials;
-import com.volcengine.tos.model.object.DeleteObjectInput;
-import com.volcengine.tos.model.object.ListObjectsType2Input;
-import com.volcengine.tos.model.object.ListObjectsType2Output;
-
-public class DeleteObjectWithPrefixExample {
-    public static void main(String[] args) {
-        String endpoint = "yuyi-realme-storage.tos-cn-shanghai.volces.com";
-        String region = "cn-shanghai";
-        String accessKey = "AKLTYWMzMWNlMDY2ZTRiNDIxMzhlMWJjNTJiOTg0YzAxNjM";
-        String secretKey = "TWpsa1lqUmxNekkyTkRjNU5EZGhNbUUwTUdKak1qaGxPV05rT1dVeE56WQ==";
-
-        String bucketName = "yuyi-realme-storage";
-        String prefix = null;
-        TOSClientConfiguration configuration = TOSClientConfiguration.builder()
-                .region(region)
-                .endpoint(endpoint)
-                .isCustomDomain(true)   // 标识当前域名为自定义域名
-                .credentials(new StaticCredentials(accessKey, secretKey))
-                .build();
-        TOSV2 tos = new TOSV2ClientBuilder().build(configuration);
-
-        try{
-            boolean isTruncated = true;
-            String continuationToken = null;
-            while (isTruncated) {
-                ListObjectsType2Input input = new ListObjectsType2Input().setBucket(bucketName)
-                        .setPrefix(prefix).setContinuationToken(continuationToken);
-                ListObjectsType2Output output = tos.listObjectsType2(input);
-                if (output.getContents() != null){
-                    for (int i = 0; i < output.getContents().size(); i++) {
-                        String objectKey = output.getContents().get(i).getKey();
-                        DeleteObjectInput deleteInput = new DeleteObjectInput().setBucket(bucketName)
-                                .setKey(output.getContents().get(i).getKey());
-                        tos.deleteObject(deleteInput);
-                        System.out.println("deleteObject succeed, deleted key is " + objectKey);
-                    }
-                }
-                isTruncated = output.isTruncated();
-                continuationToken = output.getNextContinuationToken();
-            }
-
-        } catch (TosClientException e) {
-            // 操作失败,捕获客户端异常,一般情况是请求参数错误,此时请求并未发送
-            System.out.println("deleteObject failed");
-            System.out.println("Message: " + e.getMessage());
-            if (e.getCause() != null) {
-                e.getCause().printStackTrace();
-            }
-        } catch (TosServerException e) {
-            // 操作失败,捕获服务端异常,可以获取到从服务端返回的详细错误信息
-            System.out.println("deleteObject failed");
-            System.out.println("StatusCode: " + e.getStatusCode());
-            System.out.println("Code: " + e.getCode());
-            System.out.println("Message: " + e.getMessage());
-            System.out.println("RequestID: " + e.getRequestID());
-        } catch (Throwable t) {
-            // 作为兜底捕获其他异常,一般不会执行到这里
-            System.out.println("deleteObject failed");
-            System.out.println("unexpected exception, message: " + t.getMessage());
-        }
-    }
-}

+ 0 - 44
src/main/java/com/wj/other/MockServer.java

@@ -1,44 +0,0 @@
-package com.wj.other;
-
-import com.sun.net.httpserver.HttpExchange;
-import com.sun.net.httpserver.HttpHandler;
-import com.sun.net.httpserver.HttpServer;
-
-import java.io.IOException;
-import java.io.OutputStream;
-import java.net.InetSocketAddress;
-
-public class MockServer {
-
-    public static void startServer() throws IOException {
-        // 创建一个HTTP服务器,监听本地的9999端口
-        HttpServer server = HttpServer.create(new InetSocketAddress(9999), 0);
-        // 设置'/updateRecordURL'路径的处理器
-        server.createContext("/updateRecordURL", new HttpHandler() {
-            @Override
-            public void handle(HttpExchange httpExchange) throws IOException {
-                // 假设所有POST请求都成功
-                if ("POST".equals(httpExchange.getRequestMethod())) {
-                    // 发送HTTP状态码200
-                    httpExchange.sendResponseHeaders(200, "Success".length());
-                    OutputStream os = httpExchange.getResponseBody();
-                    os.write("Success".getBytes());
-                    os.close();
-                } else {
-                    // 其他请求方法返回错误
-                    httpExchange.sendResponseHeaders(405, "Method Not Allowed".length()); // 405 Method Not Allowed
-                    OutputStream os = httpExchange.getResponseBody();
-                    os.write("Method Not Allowed".getBytes());
-                    os.close();
-                }
-            }
-        });
-        // 启动服务器
-        server.start();
-        System.out.println("Mock server started on port 9999 and listening to '/updateRecordURL' path for POST requests.");
-    }
-
-    public static void main(String[] args) throws IOException {
-        startServer();
-    }
-}

+ 0 - 46
src/test/java/wj/service/impl/SaveRecordTest.java

@@ -1,46 +0,0 @@
-package wj.service.impl;
-
-import com.wj.config.PropertiesConfig;
-import com.wj.service.impl.SaveRecord;
-import org.junit.jupiter.api.Test;
-import org.mockito.MockedStatic;
-import org.mockito.Mockito;
-
-import java.net.HttpURLConnection;
-import java.net.URL;
-
-import static org.junit.jupiter.api.Assertions.assertTrue;
-import static org.mockito.Mockito.verify;
-import static org.mockito.Mockito.when;
-
-public class SaveRecordTest {
-
-    @Test
-    public void testSaverecord() throws Exception {
-        try (MockedStatic<PropertiesConfig> mockedPropertiesConfig = Mockito.mockStatic(PropertiesConfig.class)) {
-            // 定义getSqlurl方法的行为,使其返回一个模拟的URL
-            mockedPropertiesConfig.when(PropertiesConfig::getSqlUrl).thenReturn("http://mocked-url.com");
-
-            // 模拟URL和HttpURLConnection
-            URL mockUrl = Mockito.mock(URL.class);
-            HttpURLConnection mockCon = Mockito.mock(HttpURLConnection.class);
-
-            // 配置模拟对象的行为
-            when(mockUrl.openConnection()).thenReturn(mockCon);
-            when(mockCon.getResponseCode()).thenReturn(200);
-
-            // 调用saverecord方法
-            boolean result = SaveRecord.saverecord("http://mocked-url.com", "test-ucid", "test-url");
-
-            // 断言结果为true
-            assertTrue(result);
-
-            // 验证是否调用了正确的方法
-            verify(mockCon).setRequestMethod("POST");
-            verify(mockCon).setDoOutput(true);
-            verify(mockCon).setRequestProperty("Content-Type", "application/json");
-            verify(mockCon).getOutputStream();
-            verify(mockCon).getResponseCode();
-        }
-    }
-}

+ 0 - 65
src/test/java/wj/service/impl/UploadSmallFileTest.java

@@ -1,65 +0,0 @@
-
-package wj.service.impl;
-
-import com.volcengine.tos.TOSV2;
-import com.volcengine.tos.model.object.PutObjectFromFileInput;
-import com.volcengine.tos.model.object.PutObjectFromFileOutput;
-import com.wj.exception.CustomXmlParseException;
-import com.wj.service.impl.SaveRecord;
-import com.wj.service.impl.UploadFile;
-import org.junit.jupiter.api.BeforeEach;
-import org.junit.jupiter.api.Test;
-import org.mockito.Mockito;
-
-import static org.junit.jupiter.api.Assertions.assertThrows;
-import static org.mockito.ArgumentMatchers.anyString;
-import static org.mockito.Mockito.*;
-
-public class UploadSmallFileTest {
-
-    private SaveRecord saveRecord;
-    private TOSV2 tos;
-    private String bucketName = "test-bucket";
-    private String file = "test-file.wav";
-    private String UCID = "test-ucid";
-    private String str = "test-string";
-
-    @BeforeEach
-    public void setUp() {
-        saveRecord = Mockito.mock(SaveRecord.class);
-        tos = Mockito.mock(TOSV2.class);
-    }
-
-    @Test
-    public void testUploadSmallFileSuccess() throws Exception {
-        // 模拟成功上传文件
-        PutObjectFromFileOutput mockOutput = Mockito.mock(PutObjectFromFileOutput.class);
-        when(tos.putObjectFromFile(any(PutObjectFromFileInput.class))).thenReturn(mockOutput);
-        when(mockOutput.getEtag()).thenReturn("test-etag");
-        when(mockOutput.getHashCrc64ecma()).thenReturn("test-crc64");
-
-        // 模拟成功保存记录到数据库
-        when(SaveRecord.saverecord(anyString(), anyString(), anyString())).thenReturn(true);
-
-        // 执行上传文件的方法
-        UploadFile.uploadSmallFile(tos, bucketName, file, UCID, str);
-
-        // 验证是否成功调用了saverecord方法
-        //verify(saveRecord);
-        verify(saveRecord).saverecord(anyString(), eq(UCID), anyString());
-    }
-
-    @Test
-    public void testUploadSmallFileFailure() {
-        // 模拟上传文件失败
-        PutObjectFromFileOutput mockOutput = Mockito.mock(PutObjectFromFileOutput.class);
-        when(tos.putObjectFromFile(any(PutObjectFromFileInput.class))).thenReturn(mockOutput);
-        when(mockOutput.getEtag()).thenReturn(null);
-        when(mockOutput.getHashCrc64ecma()).thenReturn(null);
-
-        // 验证上传失败时是否抛出了CustomXmlParseException异常
-        assertThrows(CustomXmlParseException.class, () -> {
-            UploadFile.uploadSmallFile(tos, bucketName, file, UCID, str);
-        });
-    }
-}

+ 0 - 120
xml_cache.txt

@@ -1,120 +0,0 @@
-D:\Desktop\calls\400001\002\11\14\400001002111405.xml,00001018381676248043,2023-02-13T08:27:46.793+08:00,400001002111405
-D:\Desktop\calls\400001\002\11\14\400001002111400.xml,00001017911676247869,2023-02-13T08:26:26.853+08:00,400001002111400
-D:\Desktop\calls\400001\002\11\14\400001002111404.xml,00001018171676247987,2023-02-13T08:28:50.574+08:00,400001002111404
-D:\Desktop\calls\400001\002\11\14\400001002111403.xml,00001018161676247986,2023-02-13T08:26:50.034+08:00,400001002111403
-D:\Desktop\calls\400001\002\11\14\400001002111407.xml,00001018401676248054,2023-02-13T08:28:30.173+08:00,400001002111407
-D:\Desktop\calls\400001\002\11\14\400001002111406.xml,00001018391676248044,2023-02-13T08:27:58.408+08:00,400001002111406
-D:\Desktop\calls\400001\002\11\14\400001002111401.xml,00001017921676247890,2023-02-13T08:26:10.940+08:00,400001002111401
-D:\Desktop\calls\400001\002\11\14\400001002111408.xml,00001018651676248123,2023-02-13T08:28:51.444+08:00,400001002111408
-D:\Desktop\calls\400001\002\11\14\400001002111402.xml,00001018141676247982,2023-02-13T08:26:35.203+08:00,400001002111402
-D:\Desktop\calls\400001\002\11\14\400001002111409.xml,00001018711676248161,2023-02-13T08:33:44.225+08:00,400001002111409
-D:\Desktop\calls\400001\002\11\14\400001002111415.xml,00001019021676248364,2023-02-13T08:35:55.345+08:00,400001002111415
-D:\Desktop\calls\400001\002\11\14\400001002111412.xml,00001018841676248287,2023-02-13T08:31:43.932+08:00,400001002111412
-D:\Desktop\calls\400001\002\11\14\400001002111413.xml,00001018911676248317,2023-02-13T08:32:48.501+08:00,400001002111413
-D:\Desktop\calls\400001\002\11\14\400001002111411.xml,00001018821676248265,2023-02-13T08:34:21.111+08:00,400001002111411
-D:\Desktop\calls\400001\002\11\14\400001002111410.xml,00001018811676248258,2023-02-13T08:31:50.332+08:00,400001002111410
-D:\Desktop\calls\400001\002\11\14\400001002111414.xml,00001019001676248351,2023-02-13T08:34:57.002+08:00,400001002111414
-D:\Desktop\calls\400001\002\11\14\400001002111416.xml,00001018981676248340,2023-02-13T08:40:33.956+08:00,400001002111416
-D:\Desktop\calls\400001\002\11\14\400001002111417.xml,00001019081676248397,2023-02-13T08:35:20.263+08:00,400001002111417
-D:\Desktop\calls\400001\002\11\14\400001002111418.xml,00001019091676248398,2023-02-13T08:36:01.006+08:00,400001002111418
-D:\Desktop\calls\400001\002\11\14\400001002111419.xml,00001019061676248392,2023-02-13T08:35:01.731+08:00,400001002111419
-D:\Desktop\calls\400001\002\11\14\400001002111420.xml,00001019251676248427,2023-02-13T08:36:06.406+08:00,400001002111420
-D:\Desktop\calls\400001\002\11\14\400001002111421.xml,00001019131676248412,2023-02-13T08:38:51.260+08:00,400001002111421
-D:\Desktop\calls\400001\002\11\14\400001002111422.xml,00001019311676248445,2023-02-13T08:38:56.980+08:00,400001002111422
-D:\Desktop\calls\400001\002\11\14\400001002111424.xml,00001019391676248461,2023-02-13T08:38:51.360+08:00,400001002111424
-D:\Desktop\calls\400001\002\11\14\400001002111425.xml,00001019471676248502,2023-02-13T08:38:30.978+08:00,400001002111425
-D:\Desktop\calls\400001\002\11\14\400001002111423.xml,00001019441676248487,2023-02-13T08:34:54.882+08:00,400001002111423
-D:\Desktop\calls\400001\002\11\14\400001002111426.xml,00001019551676248522,2023-02-13T08:36:52.423+08:00,400001002111426
-D:\Desktop\calls\400001\002\11\14\400001002111427.xml,00001019581676248546,2023-02-13T08:38:39.140+08:00,400001002111427
-D:\Desktop\calls\400001\002\11\14\400001002111428.xml,00001019621676248561,2023-02-13T08:41:05.669+08:00,400001002111428
-D:\Desktop\calls\400001\002\11\14\400001002111429.xml,00001019601676248559,2023-02-13T08:40:07.196+08:00,400001002111429
-D:\Desktop\calls\400001\002\11\14\400001002111430.xml,00001019841676248646,2023-02-13T08:37:49.067+08:00,400001002111430
-D:\Desktop\calls\400001\002\11\14\400001002111431.xml,00001019731676248594,2023-02-13T08:38:45.910+08:00,400001002111431
-D:\Desktop\calls\400001\002\11\14\400001002111432.xml,00001019881676248655,2023-02-13T08:42:00.705+08:00,400001002111432
-D:\Desktop\calls\400001\002\11\14\400001002111434.xml,00001019971676248676,2023-02-13T08:42:18.727+08:00,400001002111434
-D:\Desktop\calls\400001\002\11\14\400001002111433.xml,00001019941676248663,2023-02-13T08:37:59.948+08:00,400001002111433
-D:\Desktop\calls\400001\002\11\14\400001002111435.xml,00001020041676248684,2023-02-13T08:40:38.336+08:00,400001002111435
-D:\Desktop\calls\400001\002\11\14\400001002111436.xml,00001020161676248697,2023-02-13T08:40:10.745+08:00,400001002111436
-D:\Desktop\calls\400001\002\11\14\400001002111437.xml,00001020231676248726,2023-02-13T08:39:25.022+08:00,400001002111437
-D:\Desktop\calls\400001\002\11\14\400001002111438.xml,00001020271676248742,2023-02-13T08:39:11.550+08:00,400001002111438
-D:\Desktop\calls\400001\002\11\14\400001002111439.xml,00001020261676248741,2023-02-13T08:40:19.306+08:00,400001002111439
-D:\Desktop\calls\400001\002\11\14\400001002111440.xml,00001020311676248757,2023-02-13T08:48:43.742+08:00,400001002111440
-D:\Desktop\calls\400001\002\11\14\400001002111441.xml,00001020321676248758,2023-02-13T08:42:51.991+08:00,400001002111441
-D:\Desktop\calls\400001\002\11\14\400001002111442.xml,00001020491676248793,2023-02-13T08:42:26.007+08:00,400001002111442
-D:\Desktop\calls\400001\002\11\14\400001002111443.xml,00001020571676248835,2023-02-13T08:50:05.811+08:00,400001002111443
-D:\Desktop\calls\400001\002\11\14\400001002111444.xml,00001020521676248809,2023-02-13T08:44:15.690+08:00,400001002111444
-D:\Desktop\calls\400001\002\11\14\400001002111445.xml,00001020711676248895,2023-02-13T08:45:09.283+08:00,400001002111445
-D:\Desktop\calls\400001\002\11\14\400001002111446.xml,00001020811676248948,2023-02-13T08:42:29.489+08:00,400001002111446
-D:\Desktop\calls\400001\002\11\14\400001002111447.xml,00001020931676248964,2023-02-13T08:44:21.100+08:00,400001002111447
-D:\Desktop\calls\400001\002\11\14\400001002111448.xml,00001020951676248970,2023-02-13T08:42:58.572+08:00,400001002111448
-D:\Desktop\calls\400001\002\11\14\400001002111449.xml,00001020941676248965,2023-02-13T08:45:19.544+08:00,400001002111449
-D:\Desktop\calls\400001\002\11\14\400001002111450.xml,00001020971676248980,2023-02-13T08:43:40.656+08:00,400001002111450
-D:\Desktop\calls\400001\002\11\14\400001002111452.xml,00001021101676249006,2023-02-13T08:44:41.622+08:00,400001002111452
-D:\Desktop\calls\400001\002\11\14\400001002111451.xml,00001020871676248956,2023-02-13T08:45:34.075+08:00,400001002111451
-D:\Desktop\calls\400001\002\11\14\400001002111453.xml,00001021091676249000,2023-02-13T08:46:06.800+08:00,400001002111453
-D:\Desktop\calls\400001\002\11\14\400001002111454.xml,00001021121676249011,2023-02-13T08:47:10.426+08:00,400001002111454
-D:\Desktop\calls\400001\002\11\14\400001002111455.xml,00001021211676249029,2023-02-13T08:44:23.231+08:00,400001002111455
-D:\Desktop\calls\400001\002\11\14\400001002111457.xml,00001021301676249050,2023-02-13T08:46:41.692+08:00,400001002111457
-D:\Desktop\calls\400001\002\11\14\400001002111456.xml,00001021111676249010,2023-02-13T08:47:06.545+08:00,400001002111456
-D:\Desktop\calls\400001\002\11\14\400001002111459.xml,00001021521676249114,2023-02-13T08:45:44.837+08:00,400001002111459
-D:\Desktop\calls\400001\002\11\14\400001002111458.xml,00001021381676249074,2023-02-13T08:49:21.656+08:00,400001002111458
-D:\Desktop\calls\400001\002\11\14\400001002111460.xml,00001021611676249169,2023-02-13T08:46:17.510+08:00,400001002111460
-D:\Desktop\calls\400001\002\11\14\400001002111462.xml,00001021621676249173,2023-02-13T08:46:44.093+08:00,400001002111462
-D:\Desktop\calls\400001\002\11\14\400001002111463.xml,00001021751676249192,2023-02-13T08:47:06.795+08:00,400001002111463
-D:\Desktop\calls\400001\002\11\14\400001002111464.xml,00001021941676249271,2023-02-13T08:48:51.083+08:00,400001002111464
-D:\Desktop\calls\400001\002\11\14\400001002111465.xml,00001022011676249289,2023-02-13T08:48:48.653+08:00,400001002111465
-D:\Desktop\calls\400001\002\11\14\400001002111467.xml,00001022031676249294,2023-02-13T08:48:55.363+08:00,400001002111467
-D:\Desktop\calls\400001\002\11\14\400001002111466.xml,00001021951676249274,2023-02-13T08:50:00.870+08:00,400001002111466
-D:\Desktop\calls\400001\002\11\14\400001002111468.xml,00001022041676249297,2023-02-13T08:52:51.868+08:00,400001002111468
-D:\Desktop\calls\400001\002\11\14\400001002111469.xml,00001022241676249350,2023-02-13T08:49:24.137+08:00,400001002111469
-D:\Desktop\calls\400001\002\11\14\400001002111470.xml,00001022251676249358,2023-02-13T08:53:07.879+08:00,400001002111470
-D:\Desktop\calls\400001\002\11\14\400001002111471.xml,00001022351676249395,2023-02-13T08:51:01.609+08:00,400001002111471
-D:\Desktop\calls\400001\002\11\14\400001002111473.xml,00001022261676249370,2023-02-13T08:55:58.694+08:00,400001002111473
-D:\Desktop\calls\400001\002\11\14\400001002111474.xml,00001022441676249440,2023-02-13T08:52:04.373+08:00,400001002111474
-D:\Desktop\calls\400001\002\11\14\400001002111472.xml,00001022331676249379,2023-02-13T08:51:07.081+08:00,400001002111472
-D:\Desktop\calls\400001\002\11\14\400001002111475.xml,00001022451676249447,2023-02-13T08:55:27.103+08:00,400001002111475
-D:\Desktop\calls\400001\002\11\14\400001002111476.xml,00001022421676249426,2023-02-13T08:55:13.831+08:00,400001002111476
-D:\Desktop\calls\400001\002\11\14\400001002111477.xml,00001022481676249461,2023-02-13T08:52:51.028+08:00,400001002111477
-D:\Desktop\calls\400001\002\11\14\400001002111478.xml,00001022621676249481,2023-02-13T08:51:30.250+08:00,400001002111478
-D:\Desktop\calls\400001\002\11\14\400001002111479.xml,00001022511676249469,2023-02-13T08:57:01.639+08:00,400001002111479
-D:\Desktop\calls\400001\002\11\14\400001002111480.xml,00001022721676249511,2023-02-13T08:52:20.114+08:00,400001002111480
-D:\Desktop\calls\400001\002\11\14\400001002111481.xml,00001022731676249526,2023-02-13T08:52:11.544+08:00,400001002111481
-D:\Desktop\calls\400001\002\11\14\400001002111482.xml,00001022741676249526,2023-02-13T08:53:16.419+08:00,400001002111482
-D:\Desktop\calls\400001\002\11\14\400001002111483.xml,00001022871676249568,2023-02-13T08:55:35.154+08:00,400001002111483
-D:\Desktop\calls\400001\002\11\14\400001002111484.xml,00001022931676249599,2023-02-13T08:53:56.874+08:00,400001002111484
-D:\Desktop\calls\400001\002\11\14\400001002111485.xml,00001022921676249597,2023-02-13T08:58:57.292+08:00,400001002111485
-D:\Desktop\calls\400001\002\11\14\400001002111486.xml,00001023091676249706,2023-02-13T08:55:13.981+08:00,400001002111486
-D:\Desktop\calls\400001\002\11\14\400001002111487.xml,00001023021676249686,2023-02-13T08:58:13.895+08:00,400001002111487
-D:\Desktop\calls\400001\002\11\14\400001002111488.xml,00001023141676249724,2023-02-13T08:55:42.174+08:00,400001002111488
-D:\Desktop\calls\400001\002\11\14\400001002111489.xml,00001023101676249711,2023-02-13T08:59:16.655+08:00,400001002111489
-D:\Desktop\calls\400001\002\11\14\400001002111490.xml,00001023121676249717,2023-02-13T08:58:23.506+08:00,400001002111490
-D:\Desktop\calls\400001\002\11\14\400001002111491.xml,00001023261676249742,2023-02-13T08:56:34.848+08:00,400001002111491
-D:\Desktop\calls\400001\002\11\14\400001002111492.xml,00001023281676249752,2023-02-13T08:57:43.702+08:00,400001002111492
-D:\Desktop\calls\400001\002\11\14\400001002111493.xml,00001022511676249469,2023-02-13T08:57:10.009+08:00,400001002111493
-D:\Desktop\calls\400001\002\11\14\400001002111494.xml,00001023441676249866,2023-02-13T09:01:50.657+08:00,400001002111494
-D:\Desktop\calls\400001\002\11\14\400001002111495.xml,00001023551676249898,2023-02-13T09:02:13.820+08:00,400001002111495
-D:\Desktop\calls\400001\002\11\14\400001002111496.xml,00001023651676249928,2023-02-13T08:59:27.355+08:00,400001002111496
-D:\Desktop\calls\400001\002\11\14\400001002111497.xml,00001023581676249911,2023-02-13T09:05:12.752+08:00,400001002111497
-D:\Desktop\calls\400001\002\11\14\400001002111498.xml,00001023621676249919,2023-02-13T09:04:52.511+08:00,400001002111498
-D:\Desktop\calls\400001\002\11\14\400001002111499.xml,00001023641676249927,2023-02-13T09:01:17.156+08:00,400001002111499
-D:\Desktop\calls\400001\002\11\15\400001002111508.xml,00001024341676250040,2023-02-13T09:04:10.768+08:00,400001002111508
-D:\Desktop\calls\400001\002\11\15\400001002111503.xml,00001024001676250005,2023-02-13T09:00:12.541+08:00,400001002111503
-D:\Desktop\calls\400001\002\11\15\400001002111509.xml,00001024471676250075,2023-02-13T09:01:33.526+08:00,400001002111509
-D:\Desktop\calls\400001\002\11\15\400001002111504.xml,00001023991676250001,2023-02-13T09:00:42.813+08:00,400001002111504
-D:\Desktop\calls\400001\002\11\15\400001002111502.xml,null,2023-02-13T09:02:07.120+08:00,400001002111502
-D:\Desktop\calls\400001\002\11\15\400001002111500.xml,00001023731676249939,2023-02-13T09:01:52.917+08:00,400001002111500
-D:\Desktop\calls\400001\002\11\15\400001002111510.xml,00001024461676250073,2023-02-13T09:04:03.368+08:00,400001002111510
-D:\Desktop\calls\400001\002\11\15\400001002111516.xml,00001025261676250163,2023-02-13T09:03:21.695+08:00,400001002111516
-D:\Desktop\calls\400001\002\11\15\400001002111511.xml,00001024641676250090,2023-02-13T09:05:36.363+08:00,400001002111511
-D:\Desktop\calls\400001\002\11\15\400001002111513.xml,00001025001676250139,2023-02-13T09:02:53.062+08:00,400001002111513
-D:\Desktop\calls\400001\002\11\15\400001002111517.xml,00001025341676250173,2023-02-13T09:03:03.993+08:00,400001002111517
-D:\Desktop\calls\400001\002\11\15\400001002111512.xml,00001024891676250125,2023-02-13T09:04:24.208+08:00,400001002111512
-D:\Desktop\calls\400001\002\11\15\400001002111514.xml,00001024911676250128,2023-02-13T09:07:03.309+08:00,400001002111514
-D:\Desktop\calls\400001\002\11\15\400001002111515.xml,00001024951676250135,2023-02-13T09:05:15.862+08:00,400001002111515
-D:\Desktop\calls\400001\002\11\15\400001002111518.xml,00001024961676250135,2023-02-13T09:06:17.075+08:00,400001002111518
-D:\Desktop\calls\400001\002\11\15\400001002111520.xml,00001025091676250148,2023-02-13T09:05:03.071+08:00,400001002111520
-D:\Desktop\calls\400001\002\11\15\400001002111519.xml,00001024981676250139,2023-02-13T09:12:11.213+08:00,400001002111519
-D:\Desktop\calls\400001\002\11\15\400001002111521.xml,00001025311676250169,2023-02-13T09:06:00.384+08:00,400001002111521
-D:\Desktop\calls\400001\002\11\15\400001002111523.xml,00001024921676250129,2023-02-13T09:10:42.173+08:00,400001002111523
-D:\Desktop\calls\400001\002\11\15\400001002111522.xml,00001025271676250165,2023-02-13T09:06:40.687+08:00,400001002111522
-D:\Desktop\calls\400001\002\11\15\400001002111524.xml,00001025461676250182,2023-02-13T09:08:05.204+08:00,400001002111524

BIN
录音存储接口.docx