package com.qianwen.smartman.modules.system.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/BaseCodeRuleQueryDTO.class */
|
public class BaseCodeRuleQueryDTO implements Serializable {
|
@ApiModelProperty("业务对象")
|
private String billFormId;
|
@ApiModelProperty("子系统编码")
|
private String subsysId;
|
private String condition;
|
private String objectId;
|
private String dictKey;
|
|
public void setBillFormId(final String billFormId) {
|
this.billFormId = billFormId;
|
}
|
|
public void setSubsysId(final String subsysId) {
|
this.subsysId = subsysId;
|
}
|
|
public void setCondition(final String condition) {
|
this.condition = condition;
|
}
|
|
public void setObjectId(final String objectId) {
|
this.objectId = objectId;
|
}
|
|
public void setDictKey(final String dictKey) {
|
this.dictKey = dictKey;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof BaseCodeRuleQueryDTO) {
|
BaseCodeRuleQueryDTO other = (BaseCodeRuleQueryDTO) o;
|
if (other.canEqual(this)) {
|
Object this$billFormId = getBillFormId();
|
Object other$billFormId = other.getBillFormId();
|
if (this$billFormId == null) {
|
if (other$billFormId != null) {
|
return false;
|
}
|
} else if (!this$billFormId.equals(other$billFormId)) {
|
return false;
|
}
|
Object this$subsysId = getSubsysId();
|
Object other$subsysId = other.getSubsysId();
|
if (this$subsysId == null) {
|
if (other$subsysId != null) {
|
return false;
|
}
|
} else if (!this$subsysId.equals(other$subsysId)) {
|
return false;
|
}
|
Object this$condition = getCondition();
|
Object other$condition = other.getCondition();
|
if (this$condition == null) {
|
if (other$condition != null) {
|
return false;
|
}
|
} else if (!this$condition.equals(other$condition)) {
|
return false;
|
}
|
Object this$objectId = getObjectId();
|
Object other$objectId = other.getObjectId();
|
if (this$objectId == null) {
|
if (other$objectId != null) {
|
return false;
|
}
|
} else if (!this$objectId.equals(other$objectId)) {
|
return false;
|
}
|
Object this$dictKey = getDictKey();
|
Object other$dictKey = other.getDictKey();
|
return this$dictKey == null ? other$dictKey == null : this$dictKey.equals(other$dictKey);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof BaseCodeRuleQueryDTO;
|
}
|
|
public int hashCode() {
|
Object $billFormId = getBillFormId();
|
int result = (1 * 59) + ($billFormId == null ? 43 : $billFormId.hashCode());
|
Object $subsysId = getSubsysId();
|
int result2 = (result * 59) + ($subsysId == null ? 43 : $subsysId.hashCode());
|
Object $condition = getCondition();
|
int result3 = (result2 * 59) + ($condition == null ? 43 : $condition.hashCode());
|
Object $objectId = getObjectId();
|
int result4 = (result3 * 59) + ($objectId == null ? 43 : $objectId.hashCode());
|
Object $dictKey = getDictKey();
|
return (result4 * 59) + ($dictKey == null ? 43 : $dictKey.hashCode());
|
}
|
|
public String toString() {
|
return "BaseCodeRuleQueryDTO(billFormId=" + getBillFormId() + ", subsysId=" + getSubsysId() + ", condition=" + getCondition() + ", objectId=" + getObjectId() + ", dictKey=" + getDictKey() + ")";
|
}
|
|
public BaseCodeRuleQueryDTO(final String billFormId, final String subsysId, final String condition, final String objectId, final String dictKey) {
|
this.billFormId = billFormId;
|
this.subsysId = subsysId;
|
this.condition = condition;
|
this.objectId = objectId;
|
this.dictKey = dictKey;
|
}
|
|
public String getBillFormId() {
|
return this.billFormId;
|
}
|
|
public String getSubsysId() {
|
return this.subsysId;
|
}
|
|
public String getCondition() {
|
return this.condition;
|
}
|
|
public String getObjectId() {
|
return this.objectId;
|
}
|
|
public String getDictKey() {
|
return this.dictKey;
|
}
|
}
|