6.5.4礼物冠名
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
package com.yunbao.common.event;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import com.yunbao.common.bean.BaseModel;
|
||||
|
||||
public class GiftWallIlluminateEvent extends BaseModel {
|
||||
|
||||
@SerializedName("_method_")
|
||||
private String method;
|
||||
@SerializedName("action")
|
||||
private String action;
|
||||
@SerializedName("max_number")
|
||||
private int maxNumber;
|
||||
@SerializedName("new_number")
|
||||
private int newNumber;
|
||||
|
||||
public String getMethod() {
|
||||
return method;
|
||||
}
|
||||
|
||||
public GiftWallIlluminateEvent setMethod(String method) {
|
||||
this.method = method;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getAction() {
|
||||
return action;
|
||||
}
|
||||
|
||||
public GiftWallIlluminateEvent setAction(String action) {
|
||||
this.action = action;
|
||||
return this;
|
||||
}
|
||||
|
||||
public int getMaxNumber() {
|
||||
return maxNumber;
|
||||
}
|
||||
|
||||
public GiftWallIlluminateEvent setMaxNumber(int maxNumber) {
|
||||
this.maxNumber = maxNumber;
|
||||
return this;
|
||||
}
|
||||
|
||||
public int getNewNumber() {
|
||||
return newNumber;
|
||||
}
|
||||
|
||||
public GiftWallIlluminateEvent setNewNumber(int newNumber) {
|
||||
this.newNumber = newNumber;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user