diff --git a/casic-server/pom.xml b/casic-server/pom.xml
index cd24fd8..6ff78b8 100644
--- a/casic-server/pom.xml
+++ b/casic-server/pom.xml
@@ -35,6 +35,41 @@
${boot.version}
provided
+
+ com.casic
+ casic-admin-core
+ 2.0.0.alpha
+ compile
+
+
+ org.apache.httpcomponents
+ httpcore
+ 4.0.1
+
+
+ org.apache.httpcomponents
+ httpclient
+ 4.0.2
+
+
+ org.apache.httpcomponents
+ httpclient
+
+
+ com.dameng
+ DmJdbcDriver18
+ 1.8
+ compile
+
+
+ org.testcontainers
+ testcontainers
+ 1.15.1
+
+
+ org.apache.httpcomponents
+ httpcore
+
diff --git a/casic-server/pom.xml b/casic-server/pom.xml
index cd24fd8..6ff78b8 100644
--- a/casic-server/pom.xml
+++ b/casic-server/pom.xml
@@ -35,6 +35,41 @@
${boot.version}
provided
+
+ com.casic
+ casic-admin-core
+ 2.0.0.alpha
+ compile
+
+
+ org.apache.httpcomponents
+ httpcore
+ 4.0.1
+
+
+ org.apache.httpcomponents
+ httpclient
+ 4.0.2
+
+
+ org.apache.httpcomponents
+ httpclient
+
+
+ com.dameng
+ DmJdbcDriver18
+ 1.8
+ compile
+
+
+ org.testcontainers
+ testcontainers
+ 1.15.1
+
+
+ org.apache.httpcomponents
+ httpcore
+
diff --git a/casic-server/src/main/java/com/casic/missiles/modular/system/controller/UserController.java b/casic-server/src/main/java/com/casic/missiles/modular/system/controller/UserController.java
index a7381d1..4ef1109 100644
--- a/casic-server/src/main/java/com/casic/missiles/modular/system/controller/UserController.java
+++ b/casic-server/src/main/java/com/casic/missiles/modular/system/controller/UserController.java
@@ -1,32 +1,83 @@
package com.casic.missiles.modular.system.controller;
+import com.alibaba.fastjson.JSONObject;
+import com.casic.missiles.modular.system.dto.UserDto;
+import com.casic.missiles.modular.system.model.Dict;
+import com.casic.missiles.modular.system.service.UserActionService;
+import com.casic.missiles.modular.system.utils.*;
+import dm.jdbc.util.StringUtil;
+import org.apache.commons.lang3.StringUtils;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.annotation.Resource;
+import java.util.HashMap;
+import java.util.List;
+
/**
* @Description: 小程序用户
* @Author: wangpeng
* @Date: 2022/11/8 14:39
*/
+@Controller
+@RequestMapping("user")
public class UserController {
+ @Resource
+ private UserActionService userActionService;
+
/**
* 注册
*/
+ @RequestMapping("userLogin")
+ @ResponseBody
+ public Result