lyhzzz il y a 4 mois
Parent
commit
8176662b27

+ 10 - 0
src/main/java/com/fdkankan/ucenter/vo/request/SceneCooperationParam.java

@@ -24,4 +24,14 @@ public class SceneCooperationParam {
 
     private String sceneType="mesh";
 
+    public List<String> getUserNameList() {
+        if(userNameList.isEmpty()){
+            return userNameList;
+        }
+        List<String> list = new ArrayList<>();
+        for (String s : userNameList) {
+            list.add(s.trim());
+        }
+        return list;
+    }
 }