22 lines
566 B
Java
22 lines
566 B
Java
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;
|
||
}
|
||
}
|