测试修改

This commit is contained in:
18401019693
2022-11-01 16:10:58 +08:00
parent b8ee197e52
commit 2102acd9e5
4 changed files with 22 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
package com.yunbao.common.bean;
import android.text.TextUtils;
import com.google.gson.annotations.SerializedName;
import java.util.List;
@@ -679,6 +681,15 @@ public class IMLoginModel extends BaseModel {
return usersType;
}
/**
* usersType ==C 是主播身份
*
* @return
*/
public boolean anchorUserType() {
return TextUtils.equals("C", usersType);
}
public IMLoginModel setUsersType(String usersType) {
this.usersType = usersType;
return this;