|
@@ -14,11 +14,11 @@ import com.zy.bms.utils.AesUtil;
|
|
|
import com.zy.bms.utils.RandomCode;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
-import java.util.HashSet;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Set;
|
|
|
+import java.util.*;
|
|
|
|
|
|
/**
|
|
|
* 普适型,路牌 微信小程序接口
|
|
@@ -26,6 +26,8 @@ import java.util.Set;
|
|
|
* @author yang xiao kun
|
|
|
* create on 2021/8/24
|
|
|
*/
|
|
|
+@RestController
|
|
|
+@RequestMapping("/bms/api/wx_app")
|
|
|
public class UbiLpWxController extends BaseController {
|
|
|
@Resource
|
|
|
private IUserService userService;
|
|
@@ -59,7 +61,10 @@ public class UbiLpWxController extends BaseController {
|
|
|
user.setRandomCode(RandomCode.UUID_8());
|
|
|
userService.save(user);
|
|
|
}
|
|
|
- return ServerResponse.success(AesUtil.encrypt(user.getId().toString()));
|
|
|
+ Map<String, String> res = new HashMap<>();
|
|
|
+ res.put("userId", AesUtil.encrypt(user.getId().toString()));
|
|
|
+ res.put("uuid", user.getRandomCode());
|
|
|
+ return ServerResponse.success(res);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -92,7 +97,7 @@ public class UbiLpWxController extends BaseController {
|
|
|
* 分组查询设备列表
|
|
|
*/
|
|
|
@GetMapping("getDevicesByUserId.do")
|
|
|
- public ServerResponse getDevicesByGroupId() {
|
|
|
+ public ServerResponse getDevicesByUserId() {
|
|
|
List<String> groupIds = userPrivilegeService.getGroupIdsByUserId(userId());
|
|
|
if (groupIds.isEmpty()) return ServerResponse.success(null);
|
|
|
return ServerResponse.success(deviceBaseService.listByGroupIdsWx(groupIds));
|