package com.qianwen.core.coderule.model;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/* loaded from: blade-starter-coderule-9.3.0.0-SNAPSHOT.jar:org/springblade/core/coderule/model/CodeRuleModel.class */
|
public class CodeRuleModel implements Serializable {
|
private Boolean searched;
|
private Long id;
|
private String bill_form_id;
|
private Boolean autoBillNo;
|
private Boolean repairBillNo;
|
private Boolean constLength;
|
private List<CodeRuleEntryModel> codeRuleEntryModelList;
|
|
public void setSearched(final Boolean searched) {
|
this.searched = searched;
|
}
|
|
public void setId(final Long id) {
|
this.id = id;
|
}
|
|
public void setBill_form_id(final String bill_form_id) {
|
this.bill_form_id = bill_form_id;
|
}
|
|
public void setAutoBillNo(final Boolean autoBillNo) {
|
this.autoBillNo = autoBillNo;
|
}
|
|
public void setRepairBillNo(final Boolean repairBillNo) {
|
this.repairBillNo = repairBillNo;
|
}
|
|
public void setConstLength(final Boolean constLength) {
|
this.constLength = constLength;
|
}
|
|
public void setCodeRuleEntryModelList(final List<CodeRuleEntryModel> codeRuleEntryModelList) {
|
this.codeRuleEntryModelList = codeRuleEntryModelList;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof CodeRuleModel) {
|
CodeRuleModel other = (CodeRuleModel) o;
|
if (other.canEqual(this)) {
|
Object this$searched = getSearched();
|
Object other$searched = other.getSearched();
|
if (this$searched == null) {
|
if (other$searched != null) {
|
return false;
|
}
|
} else if (!this$searched.equals(other$searched)) {
|
return false;
|
}
|
Object this$id = getId();
|
Object other$id = other.getId();
|
if (this$id == null) {
|
if (other$id != null) {
|
return false;
|
}
|
} else if (!this$id.equals(other$id)) {
|
return false;
|
}
|
Object this$autoBillNo = getAutoBillNo();
|
Object other$autoBillNo = other.getAutoBillNo();
|
if (this$autoBillNo == null) {
|
if (other$autoBillNo != null) {
|
return false;
|
}
|
} else if (!this$autoBillNo.equals(other$autoBillNo)) {
|
return false;
|
}
|
Object this$repairBillNo = getRepairBillNo();
|
Object other$repairBillNo = other.getRepairBillNo();
|
if (this$repairBillNo == null) {
|
if (other$repairBillNo != null) {
|
return false;
|
}
|
} else if (!this$repairBillNo.equals(other$repairBillNo)) {
|
return false;
|
}
|
Object this$constLength = getConstLength();
|
Object other$constLength = other.getConstLength();
|
if (this$constLength == null) {
|
if (other$constLength != null) {
|
return false;
|
}
|
} else if (!this$constLength.equals(other$constLength)) {
|
return false;
|
}
|
Object this$bill_form_id = getBill_form_id();
|
Object other$bill_form_id = other.getBill_form_id();
|
if (this$bill_form_id == null) {
|
if (other$bill_form_id != null) {
|
return false;
|
}
|
} else if (!this$bill_form_id.equals(other$bill_form_id)) {
|
return false;
|
}
|
Object this$codeRuleEntryModelList = getCodeRuleEntryModelList();
|
Object other$codeRuleEntryModelList = other.getCodeRuleEntryModelList();
|
return this$codeRuleEntryModelList == null ? other$codeRuleEntryModelList == null : this$codeRuleEntryModelList.equals(other$codeRuleEntryModelList);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof CodeRuleModel;
|
}
|
|
public int hashCode() {
|
Object $searched = getSearched();
|
int result = (1 * 59) + ($searched == null ? 43 : $searched.hashCode());
|
Object $id = getId();
|
int result2 = (result * 59) + ($id == null ? 43 : $id.hashCode());
|
Object $autoBillNo = getAutoBillNo();
|
int result3 = (result2 * 59) + ($autoBillNo == null ? 43 : $autoBillNo.hashCode());
|
Object $repairBillNo = getRepairBillNo();
|
int result4 = (result3 * 59) + ($repairBillNo == null ? 43 : $repairBillNo.hashCode());
|
Object $constLength = getConstLength();
|
int result5 = (result4 * 59) + ($constLength == null ? 43 : $constLength.hashCode());
|
Object $bill_form_id = getBill_form_id();
|
int result6 = (result5 * 59) + ($bill_form_id == null ? 43 : $bill_form_id.hashCode());
|
Object $codeRuleEntryModelList = getCodeRuleEntryModelList();
|
return (result6 * 59) + ($codeRuleEntryModelList == null ? 43 : $codeRuleEntryModelList.hashCode());
|
}
|
|
public String toString() {
|
return "CodeRuleModel(searched=" + getSearched() + ", id=" + getId() + ", bill_form_id=" + getBill_form_id() + ", autoBillNo=" + getAutoBillNo() + ", repairBillNo=" + getRepairBillNo() + ", constLength=" + getConstLength() + ", codeRuleEntryModelList=" + getCodeRuleEntryModelList() + ")";
|
}
|
|
public CodeRuleModel() {
|
this.searched = Boolean.FALSE;
|
}
|
|
public CodeRuleModel(Boolean searched) {
|
this.searched = Boolean.FALSE;
|
this.searched = searched;
|
}
|
|
public Boolean getSearched() {
|
return this.searched;
|
}
|
|
public Long getId() {
|
return this.id;
|
}
|
|
public String getBill_form_id() {
|
return this.bill_form_id;
|
}
|
|
public Boolean getAutoBillNo() {
|
return this.autoBillNo;
|
}
|
|
public Boolean getRepairBillNo() {
|
return this.repairBillNo;
|
}
|
|
public Boolean getConstLength() {
|
return this.constLength;
|
}
|
|
public List<CodeRuleEntryModel> getCodeRuleEntryModelList() {
|
return this.codeRuleEntryModelList;
|
}
|
}
|