39 lines
851 B
Java
39 lines
851 B
Java
package com.xscm.moduleutil.bean;
|
||
|
||
import com.xscm.moduleutil.BaseEvent;
|
||
|
||
import org.greenrobot.eventbus.EventBus;
|
||
|
||
import java.util.List;
|
||
|
||
import lombok.Data;
|
||
import lombok.EqualsAndHashCode;
|
||
|
||
/**
|
||
* 送礼后的成功回调
|
||
*/
|
||
@EqualsAndHashCode(callSuper = true)
|
||
@Data
|
||
public class RoomGiftData extends BaseEvent {
|
||
private int gift_total;
|
||
|
||
private List<GiftUserData> gift_user_data;
|
||
|
||
private CpType cp_type;
|
||
|
||
@Data
|
||
public static class GiftUserData {
|
||
private String user_id;//受理人id
|
||
private String gift_price;//礼物价格
|
||
}
|
||
|
||
@Data
|
||
public static class CpType {
|
||
private int cp_type;//0:不处理 1:表明心意 2:组成cp
|
||
private String text;//发送方弹起的信息
|
||
private String text1;//接收方弹起的信息
|
||
private int gift_id;//礼物id
|
||
}
|
||
|
||
}
|