From 554886463a4cb4a2d5c042f08e85d2dfcd6e9dcf Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期五, 12 十二月 2025 10:02:22 +0800
Subject: [PATCH] 修改义乌合片流程卡配置
---
north-glass-erp/src/test/java/com/example/erp/ErpApplicationTests.java | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/north-glass-erp/src/test/java/com/example/erp/ErpApplicationTests.java b/north-glass-erp/src/test/java/com/example/erp/ErpApplicationTests.java
index dee29d9..f85faad 100644
--- a/north-glass-erp/src/test/java/com/example/erp/ErpApplicationTests.java
+++ b/north-glass-erp/src/test/java/com/example/erp/ErpApplicationTests.java
@@ -1,10 +1,16 @@
package com.example.erp;
import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.data.redis.core.StringRedisTemplate;
+
+import static org.apache.tomcat.jni.Lock.trylock;
@SpringBootTest
class ErpApplicationTests {
+ @Autowired
+ private StringRedisTemplate stringRedisTemplate;
@Test
void contextLoads() {
@@ -13,7 +19,10 @@
@Test
void test() {
-
+ int x =100;
+ System.out.println(6.5+x/8);
+// stringRedisTemplate.opsForValue().set("test", "test");
+// Object test = stringRedisTemplate.opsForValue().get("test");
}
}
--
Gitblit v1.8.0