Files
yusheng-android/moduleUtil/src/main/java/com/qxcm/moduleutil/bean/RoomData.java
2025-07-12 19:08:21 +08:00

22 lines
566 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.qxcm.moduleutil.bean;
import lombok.Data;
/**
*@author qx
*@data 2025/7/8
*@description: 这是在打开获取我的房间时添加的title名称和图标
*/
@Data
public class RoomData {
private String title;//例如:我的电影房
private int titleIcon;//例如我的电影房前面的图标
private int titleType;//例如我的足迹,后面的图标
public RoomData(String title, int titleIcon, int titleType) {
this.title = title;
this.titleIcon = titleIcon;
this.titleType = titleType;
}
}