package com.skyline.electricity.entity;
|
|
import java.sql.*;
|
|
public class SysDicts
|
{
|
private String createBy;
|
private Date createDate;
|
private String delFlag;
|
private String description;
|
private String icon;
|
private String id;
|
private String interNo;
|
private String label;
|
private String parentId;
|
private String remarks;
|
private int sort;
|
private String type;
|
private String updateBy;
|
private Date updateDate;
|
private String value;
|
|
public String getCreateBy() {
|
return this.createBy;
|
}
|
|
public Date getCreateDate() {
|
return this.createDate;
|
}
|
|
public String getDelFlag() {
|
return this.delFlag;
|
}
|
|
public String getDescription() {
|
return this.description;
|
}
|
|
public String getIcon() {
|
return this.icon;
|
}
|
|
public String getId() {
|
return this.id;
|
}
|
|
public String getInterNo() {
|
return this.interNo;
|
}
|
|
public String getLabel() {
|
return this.label;
|
}
|
|
public String getParentId() {
|
return this.parentId;
|
}
|
|
public String getRemarks() {
|
return this.remarks;
|
}
|
|
public int getSort() {
|
return this.sort;
|
}
|
|
public String getType() {
|
return this.type;
|
}
|
|
public String getUpdateBy() {
|
return this.updateBy;
|
}
|
|
public Date getUpdateDate() {
|
return this.updateDate;
|
}
|
|
public String getValue() {
|
return this.value;
|
}
|
|
public void setCreateBy(final String createBy) {
|
this.createBy = createBy;
|
}
|
|
public void setCreateDate(final Date createDate) {
|
this.createDate = createDate;
|
}
|
|
public void setDelFlag(final String delFlag) {
|
this.delFlag = delFlag;
|
}
|
|
public void setDescription(final String description) {
|
this.description = description;
|
}
|
|
public void setIcon(final String icon) {
|
this.icon = icon;
|
}
|
|
public void setId(final String id) {
|
this.id = id;
|
}
|
|
public void setInterNo(final String interNo) {
|
this.interNo = interNo;
|
}
|
|
public void setLabel(final String label) {
|
this.label = label;
|
}
|
|
public void setParentId(final String parentId) {
|
this.parentId = parentId;
|
}
|
|
public void setRemarks(final String remarks) {
|
this.remarks = remarks;
|
}
|
|
public void setSort(final int sort) {
|
this.sort = sort;
|
}
|
|
public void setType(final String type) {
|
this.type = type;
|
}
|
|
public void setUpdateBy(final String updateBy) {
|
this.updateBy = updateBy;
|
}
|
|
public void setUpdateDate(final Date updateDate) {
|
this.updateDate = updateDate;
|
}
|
|
public void setValue(final String value) {
|
this.value = value;
|
}
|
|
@Override
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (!(o instanceof SysDicts)) {
|
return false;
|
}
|
final SysDicts other = (SysDicts)o;
|
if (!other.canEqual(this)) {
|
return false;
|
}
|
final Object this$createBy = this.getCreateBy();
|
final Object other$createBy = other.getCreateBy();
|
Label_0065: {
|
if (this$createBy == null) {
|
if (other$createBy == null) {
|
break Label_0065;
|
}
|
}
|
else if (this$createBy.equals(other$createBy)) {
|
break Label_0065;
|
}
|
return false;
|
}
|
final Object this$createDate = this.getCreateDate();
|
final Object other$createDate = other.getCreateDate();
|
Label_0102: {
|
if (this$createDate == null) {
|
if (other$createDate == null) {
|
break Label_0102;
|
}
|
}
|
else if (this$createDate.equals(other$createDate)) {
|
break Label_0102;
|
}
|
return false;
|
}
|
final Object this$delFlag = this.getDelFlag();
|
final Object other$delFlag = other.getDelFlag();
|
Label_0139: {
|
if (this$delFlag == null) {
|
if (other$delFlag == null) {
|
break Label_0139;
|
}
|
}
|
else if (this$delFlag.equals(other$delFlag)) {
|
break Label_0139;
|
}
|
return false;
|
}
|
final Object this$description = this.getDescription();
|
final Object other$description = other.getDescription();
|
Label_0176: {
|
if (this$description == null) {
|
if (other$description == null) {
|
break Label_0176;
|
}
|
}
|
else if (this$description.equals(other$description)) {
|
break Label_0176;
|
}
|
return false;
|
}
|
final Object this$icon = this.getIcon();
|
final Object other$icon = other.getIcon();
|
Label_0213: {
|
if (this$icon == null) {
|
if (other$icon == null) {
|
break Label_0213;
|
}
|
}
|
else if (this$icon.equals(other$icon)) {
|
break Label_0213;
|
}
|
return false;
|
}
|
final Object this$id = this.getId();
|
final Object other$id = other.getId();
|
Label_0250: {
|
if (this$id == null) {
|
if (other$id == null) {
|
break Label_0250;
|
}
|
}
|
else if (this$id.equals(other$id)) {
|
break Label_0250;
|
}
|
return false;
|
}
|
final Object this$interNo = this.getInterNo();
|
final Object other$interNo = other.getInterNo();
|
Label_0287: {
|
if (this$interNo == null) {
|
if (other$interNo == null) {
|
break Label_0287;
|
}
|
}
|
else if (this$interNo.equals(other$interNo)) {
|
break Label_0287;
|
}
|
return false;
|
}
|
final Object this$label = this.getLabel();
|
final Object other$label = other.getLabel();
|
Label_0324: {
|
if (this$label == null) {
|
if (other$label == null) {
|
break Label_0324;
|
}
|
}
|
else if (this$label.equals(other$label)) {
|
break Label_0324;
|
}
|
return false;
|
}
|
final Object this$parentId = this.getParentId();
|
final Object other$parentId = other.getParentId();
|
Label_0361: {
|
if (this$parentId == null) {
|
if (other$parentId == null) {
|
break Label_0361;
|
}
|
}
|
else if (this$parentId.equals(other$parentId)) {
|
break Label_0361;
|
}
|
return false;
|
}
|
final Object this$remarks = this.getRemarks();
|
final Object other$remarks = other.getRemarks();
|
Label_0398: {
|
if (this$remarks == null) {
|
if (other$remarks == null) {
|
break Label_0398;
|
}
|
}
|
else if (this$remarks.equals(other$remarks)) {
|
break Label_0398;
|
}
|
return false;
|
}
|
if (this.getSort() != other.getSort()) {
|
return false;
|
}
|
final Object this$type = this.getType();
|
final Object other$type = other.getType();
|
Label_0448: {
|
if (this$type == null) {
|
if (other$type == null) {
|
break Label_0448;
|
}
|
}
|
else if (this$type.equals(other$type)) {
|
break Label_0448;
|
}
|
return false;
|
}
|
final Object this$updateBy = this.getUpdateBy();
|
final Object other$updateBy = other.getUpdateBy();
|
Label_0485: {
|
if (this$updateBy == null) {
|
if (other$updateBy == null) {
|
break Label_0485;
|
}
|
}
|
else if (this$updateBy.equals(other$updateBy)) {
|
break Label_0485;
|
}
|
return false;
|
}
|
final Object this$updateDate = this.getUpdateDate();
|
final Object other$updateDate = other.getUpdateDate();
|
Label_0522: {
|
if (this$updateDate == null) {
|
if (other$updateDate == null) {
|
break Label_0522;
|
}
|
}
|
else if (this$updateDate.equals(other$updateDate)) {
|
break Label_0522;
|
}
|
return false;
|
}
|
final Object this$value = this.getValue();
|
final Object other$value = other.getValue();
|
if (this$value == null) {
|
if (other$value == null) {
|
return true;
|
}
|
}
|
else if (this$value.equals(other$value)) {
|
return true;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof SysDicts;
|
}
|
|
@Override
|
public int hashCode() {
|
final int PRIME = 59;
|
int result = 1;
|
final Object $createBy = this.getCreateBy();
|
result = result * 59 + (($createBy == null) ? 43 : $createBy.hashCode());
|
final Object $createDate = this.getCreateDate();
|
result = result * 59 + (($createDate == null) ? 43 : $createDate.hashCode());
|
final Object $delFlag = this.getDelFlag();
|
result = result * 59 + (($delFlag == null) ? 43 : $delFlag.hashCode());
|
final Object $description = this.getDescription();
|
result = result * 59 + (($description == null) ? 43 : $description.hashCode());
|
final Object $icon = this.getIcon();
|
result = result * 59 + (($icon == null) ? 43 : $icon.hashCode());
|
final Object $id = this.getId();
|
result = result * 59 + (($id == null) ? 43 : $id.hashCode());
|
final Object $interNo = this.getInterNo();
|
result = result * 59 + (($interNo == null) ? 43 : $interNo.hashCode());
|
final Object $label = this.getLabel();
|
result = result * 59 + (($label == null) ? 43 : $label.hashCode());
|
final Object $parentId = this.getParentId();
|
result = result * 59 + (($parentId == null) ? 43 : $parentId.hashCode());
|
final Object $remarks = this.getRemarks();
|
result = result * 59 + (($remarks == null) ? 43 : $remarks.hashCode());
|
result = result * 59 + this.getSort();
|
final Object $type = this.getType();
|
result = result * 59 + (($type == null) ? 43 : $type.hashCode());
|
final Object $updateBy = this.getUpdateBy();
|
result = result * 59 + (($updateBy == null) ? 43 : $updateBy.hashCode());
|
final Object $updateDate = this.getUpdateDate();
|
result = result * 59 + (($updateDate == null) ? 43 : $updateDate.hashCode());
|
final Object $value = this.getValue();
|
result = result * 59 + (($value == null) ? 43 : $value.hashCode());
|
return result;
|
}
|
|
@Override
|
public String toString() {
|
return "SysDicts(createBy=" + this.getCreateBy() + ", createDate=" + this.getCreateDate() + ", delFlag=" + this.getDelFlag() + ", description=" + this.getDescription() + ", icon=" + this.getIcon() + ", id=" + this.getId() + ", interNo=" + this.getInterNo() + ", label=" + this.getLabel() + ", parentId=" + this.getParentId() + ", remarks=" + this.getRemarks() + ", sort=" + this.getSort() + ", type=" + this.getType() + ", updateBy=" + this.getUpdateBy() + ", updateDate=" + this.getUpdateDate() + ", value=" + this.getValue() + ")";
|
}
|
}
|