26 lines
626 B
Java
26 lines
626 B
Java
package com.ghy.message.domain;
|
|
|
|
import com.ghy.common.annotation.Excel;
|
|
import com.ghy.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 聊天室信息
|
|
*/
|
|
@Data
|
|
public class JimGroupInfo extends BaseEntity {
|
|
|
|
@Excel(name = "聊天室群组序列", cellType = Excel.ColumnType.NUMERIC)
|
|
private Long id;
|
|
|
|
@Excel(name = "聊天室id,", cellType = Excel.ColumnType.STRING)
|
|
private Long sid;
|
|
|
|
@Excel(name = "聊天室名称", cellType = Excel.ColumnType.STRING)
|
|
private String groupName;
|
|
|
|
@Excel(name = "聊天室描述", cellType = Excel.ColumnType.STRING)
|
|
private String groupDesc;
|
|
|
|
}
|