2025-10-20 10:16:44 +08:00
|
|
|
package com.xscm.moduleutil.bean;
|
|
|
|
|
|
2025-10-24 17:52:11 +08:00
|
|
|
import lombok.Data;
|
2025-10-20 10:16:44 +08:00
|
|
|
|
2025-10-24 17:52:11 +08:00
|
|
|
@Data
|
|
|
|
|
public class UserResultResp {
|
2025-10-20 10:16:44 +08:00
|
|
|
|
2025-10-24 17:52:11 +08:00
|
|
|
private String room_id;
|
2025-10-20 10:16:44 +08:00
|
|
|
private String user_id;
|
|
|
|
|
private String user_code;
|
|
|
|
|
private String nickname;
|
|
|
|
|
private String head_picture;
|
|
|
|
|
private String sex;
|
|
|
|
|
private String follow;
|
|
|
|
|
private String fans_count;
|
|
|
|
|
private String online_text;
|
|
|
|
|
private String good_number;
|
|
|
|
|
private String id_color;
|
|
|
|
|
|
|
|
|
|
}
|