[Modify]特权卡提示,礼物面板调整
This commit is contained in:
@@ -7,6 +7,7 @@ public class PrivateChatLimitInfo implements Serializable {
|
||||
private String message;
|
||||
private int wealthLevel;
|
||||
private int charmLevel;
|
||||
private int model;
|
||||
|
||||
//<editor-fold defaultstate="collapsed" desc="delombok">
|
||||
@SuppressWarnings("all")
|
||||
@@ -53,6 +54,14 @@ public class PrivateChatLimitInfo implements Serializable {
|
||||
this.charmLevel = charmLevel;
|
||||
}
|
||||
|
||||
public int getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
public void setModel(int model) {
|
||||
this.model = model;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("all")
|
||||
public boolean equals(final Object o) {
|
||||
@@ -63,9 +72,11 @@ public class PrivateChatLimitInfo implements Serializable {
|
||||
if (this.isChat() != other.isChat()) return false;
|
||||
if (this.getWealthLevel() != other.getWealthLevel()) return false;
|
||||
if (this.getCharmLevel() != other.getCharmLevel()) return false;
|
||||
if (this.getModel() != other.getModel()) return false;
|
||||
final Object this$message = this.getMessage();
|
||||
final Object other$message = other.getMessage();
|
||||
if (this$message == null ? other$message != null : !this$message.equals(other$message)) return false;
|
||||
if (this$message == null ? other$message != null : !this$message.equals(other$message))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -82,6 +93,7 @@ public class PrivateChatLimitInfo implements Serializable {
|
||||
result = result * PRIME + (this.isChat() ? 79 : 97);
|
||||
result = result * PRIME + this.getWealthLevel();
|
||||
result = result * PRIME + this.getCharmLevel();
|
||||
result = result * PRIME + this.getModel();
|
||||
final Object $message = this.getMessage();
|
||||
result = result * PRIME + ($message == null ? 43 : $message.hashCode());
|
||||
return result;
|
||||
@@ -90,7 +102,7 @@ public class PrivateChatLimitInfo implements Serializable {
|
||||
@Override
|
||||
@SuppressWarnings("all")
|
||||
public String toString() {
|
||||
return "PrivateChatLimitInfo(chat=" + this.isChat() + ", message=" + this.getMessage() + ", wealthLevel=" + this.getWealthLevel() + ", charmLevel=" + this.getCharmLevel() + ")";
|
||||
return "PrivateChatLimitInfo(chat=" + this.isChat() + ", message=" + this.getMessage() + ", wealthLevel=" + this.getWealthLevel() + ", charmLevel=" + this.getCharmLevel() + ", model=" + this.getModel() + ")";
|
||||
}
|
||||
//</editor-fold>
|
||||
}
|
||||
|
Reference in New Issue
Block a user