|
@@ -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;
|
|
|
+ }
|
|
|
}
|