17 lines
316 B
Java
17 lines
316 B
Java
package com.xscm.moduleutil.bean;
|
|
|
|
import lombok.Data;
|
|
/**
|
|
*@author qx
|
|
*@data 2025/7/16
|
|
*@description:抢头条推送过来的参数
|
|
*/
|
|
@Data
|
|
public class HeadlineEvent {
|
|
private int type;
|
|
private String content;
|
|
private UserInfo user_info;
|
|
private String room_id;
|
|
private String end_time;
|
|
}
|