Parcourir la source

1、移除不相干代码

rayson il y a 1 an
Parent
commit
6b5d8f5a13

+ 0 - 41
menduner/menduner-im-biz/src/main/java/com/citu/module/menduner/im/controller/admin/UserController.java

@@ -1,41 +0,0 @@
-package com.citu.module.menduner.im.controller.admin;
-
-import com.citu.framework.common.pojo.CommonResult;
-import com.citu.module.menduner.im.controller.base.user.ImUserReqVo;
-import com.citu.module.menduner.im.controller.base.user.ImUserResoVO;
-import com.citu.module.menduner.im.service.UserService;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RestController;
-
-/**
- * @eo.api-type http
- * @eo.groupName 新门墩儿.聊天.用户信息获取
- * @eo.path
- */
-
-@RestController
-public class UserController {
-
-    UserService userService;
-
-    /**
-     * @eo.name 获取聊天秘钥信息
-     * @eo.url /im/user/get
-     * @eo.method post
-     * @eo.request-type json
-     * @param reqVo
-     * @return CommonResult
-     */
-    @PostMapping("/im/user/get")
-    public CommonResult<ImUserResoVO> getUser(@RequestBody ImUserReqVo reqVo){
-        return userService.getUser(reqVo);
-    }
-
-
-    @Autowired
-    public void setUserService(UserService userService) {
-        this.userService = userService;
-    }
-}

+ 0 - 14
menduner/menduner-im-biz/src/main/java/com/citu/module/menduner/im/controller/base/user/ImUserReqVo.java

@@ -1,14 +0,0 @@
-package com.citu.module.menduner.im.controller.base.user;
-
-public class ImUserReqVo {
-
-    private Long userId;
-
-    public Long getUserId() {
-        return userId;
-    }
-
-    public void setUserId(Long userId) {
-        this.userId = userId;
-    }
-}

+ 0 - 53
menduner/menduner-im-biz/src/main/java/com/citu/module/menduner/im/controller/base/user/ImUserResoVO.java

@@ -1,53 +0,0 @@
-package com.citu.module.menduner.im.controller.base.user;
-
-public class ImUserResoVO {
-    private String uid;
-
-    private String token;
-
-    private String tcpUrl;
-
-    private String wsUrl;
-
-    private String wssUrl;
-
-    public String getUid() {
-        return uid;
-    }
-
-    public void setUid(String uid) {
-        this.uid = uid;
-    }
-
-    public String getToken() {
-        return token;
-    }
-
-    public void setToken(String token) {
-        this.token = token;
-    }
-
-    public String getTcpUrl() {
-        return tcpUrl;
-    }
-
-    public void setTcpUrl(String tcpUrl) {
-        this.tcpUrl = tcpUrl;
-    }
-
-    public String getWsUrl() {
-        return wsUrl;
-    }
-
-    public void setWsUrl(String wsUrl) {
-        this.wsUrl = wsUrl;
-    }
-
-    public String getWssUrl() {
-        return wssUrl;
-    }
-
-    public void setWssUrl(String wssUrl) {
-        this.wssUrl = wssUrl;
-    }
-}

+ 0 - 56
menduner/menduner-im-biz/src/main/java/com/citu/module/menduner/im/controller/base/wukong/UserTokenReqVO.java

@@ -1,56 +0,0 @@
-package com.citu.module.menduner.im.controller.base.wukong;
-
-public class UserTokenReqVO {
-
-    /**
-     * 通信的用户唯一ID,可以随机uuid (建议自己服务端的用户唯一uid) (WuKongIMSDK需要)
-     */
-    private String uid;
-
-    /**
-     * 校验的token,随机uuid(建议使用自己服务端的用户的token)(WuKongIMSDK需要)
-     */
-    private String token;
-
-    /**
-     * 0.app 1.web (相同用户相同设备标记的主设备登录会互相踢,从设备将共存)
-     */
-    private Integer deviceFlag=1;
-
-    /**
-     * 设备等级 0.为从设备 1.为主设备
-     */
-    private Integer deviceLevel=1;
-
-    public String getUid() {
-        return uid;
-    }
-
-    public void setUid(String uid) {
-        this.uid = uid;
-    }
-
-    public String getToken() {
-        return token;
-    }
-
-    public void setToken(String token) {
-        this.token = token;
-    }
-
-    public Integer getDeviceFlag() {
-        return deviceFlag;
-    }
-
-    public void setDeviceFlag(Integer deviceFlag) {
-        this.deviceFlag = deviceFlag;
-    }
-
-    public Integer getDeviceLevel() {
-        return deviceLevel;
-    }
-
-    public void setDeviceLevel(Integer deviceLevel) {
-        this.deviceLevel = deviceLevel;
-    }
-}

+ 0 - 22
menduner/menduner-im-biz/src/main/java/com/citu/module/menduner/im/controller/base/wukong/WukongApiResp.java

@@ -1,22 +0,0 @@
-package com.citu.module.menduner.im.controller.base.wukong;
-
-public class WukongApiResp {
-
-    private Integer status;
-
-    private Boolean statusBool;
-
-    public Boolean getStatusBool() {
-        return null!=status && 200 == status;
-    }
-
-
-
-    public Integer getStatus() {
-        return status;
-    }
-
-    public void setStatus(Integer status) {
-        this.status = status;
-    }
-}