29 lines
736 B
Java
29 lines
736 B
Java
|
|
package com.xscm.moduleutil.event;
|
||
|
|
|
||
|
|
|
||
|
|
import com.xscm.moduleutil.bean.RoonGiftModel;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class RoomGiftGiveEvent {
|
||
|
|
public String userId;
|
||
|
|
public String room_id;
|
||
|
|
public String pit;
|
||
|
|
public String num;
|
||
|
|
public RoonGiftModel giftModel;
|
||
|
|
public RoonGiftModel roonGiftModel;
|
||
|
|
public int send_type;
|
||
|
|
public RoomGiftGiveEvent(String userId, String room_id, String pit, String num, int send_type, RoonGiftModel giftModel, RoonGiftModel roonGiftModel){
|
||
|
|
this.userId = userId;
|
||
|
|
this.room_id = room_id;
|
||
|
|
this.pit = pit;
|
||
|
|
this.num = num;
|
||
|
|
this.send_type = send_type;
|
||
|
|
this.giftModel = giftModel;
|
||
|
|
this.roonGiftModel = roonGiftModel;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|