diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml
new file mode 100644
index 0000000..2b63946
--- /dev/null
+++ b/.idea/uiDesigner.xml
@@ -0,0 +1,124 @@
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/lottery-system/lottery-common/src/main/java/com/lottery/utils/LoginHttpUtils.java b/lottery-system/lottery-common/src/main/java/com/lottery/utils/LoginHttpUtils.java
new file mode 100644
index 0000000..741d974
--- /dev/null
+++ b/lottery-system/lottery-common/src/main/java/com/lottery/utils/LoginHttpUtils.java
@@ -0,0 +1,30 @@
+//package com.lottery.utils;
+//
+//import org.springframework.stereotype.Component;
+//
+///**
+// * @program: lottery
+// * @ClassName LoginHttpUtils
+// * @description:
+// * @author: wwl
+// * @create: 2025-07-16 10:07
+// * @Version 1.0
+// **/
+//
+//@Component
+//public class LoginHttpUtils {
+// private final RestTemplate restTemplate;
+//
+// public HttpUtil(RestTemplateBuilder restTemplateBuilder) {
+// this.restTemplate = restTemplateBuilder.build();
+// }
+//
+// public T post(String url, Object request, Class responseType) {
+// HttpHeaders headers = new HttpHeaders();
+// headers.setContentType(MediaType.APPLICATION_JSON);
+// HttpEntity