package com.qianwen.smartman.modules.system.vo;
|
|
import java.io.Serializable;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/CodeRuleCountVO.class */
|
public class CodeRuleCountVO implements Serializable {
|
private Integer count;
|
private String billFormId;
|
|
public void setCount(final Integer count) {
|
this.count = count;
|
}
|
|
public void setBillFormId(final String billFormId) {
|
this.billFormId = billFormId;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof CodeRuleCountVO) {
|
CodeRuleCountVO other = (CodeRuleCountVO) o;
|
if (other.canEqual(this)) {
|
Object this$count = getCount();
|
Object other$count = other.getCount();
|
if (this$count == null) {
|
if (other$count != null) {
|
return false;
|
}
|
} else if (!this$count.equals(other$count)) {
|
return false;
|
}
|
Object this$billFormId = getBillFormId();
|
Object other$billFormId = other.getBillFormId();
|
return this$billFormId == null ? other$billFormId == null : this$billFormId.equals(other$billFormId);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof CodeRuleCountVO;
|
}
|
|
public int hashCode() {
|
Object $count = getCount();
|
int result = (1 * 59) + ($count == null ? 43 : $count.hashCode());
|
Object $billFormId = getBillFormId();
|
return (result * 59) + ($billFormId == null ? 43 : $billFormId.hashCode());
|
}
|
|
public String toString() {
|
return "CodeRuleCountVO(count=" + getCount() + ", billFormId=" + getBillFormId() + ")";
|
}
|
|
public Integer getCount() {
|
return this.count;
|
}
|
|
public String getBillFormId() {
|
return this.billFormId;
|
}
|
}
|