package com.skyline.electricity.entity;
|
|
public class PgPos
|
{
|
private String id;
|
private String name;
|
private String orgId;
|
private String orgName;
|
private String roleId;
|
private String roleName;
|
private String specId;
|
private String specName;
|
private String code;
|
private Integer seqNo;
|
|
public String getId() {
|
return this.id;
|
}
|
|
public String getName() {
|
return this.name;
|
}
|
|
public String getOrgId() {
|
return this.orgId;
|
}
|
|
public String getOrgName() {
|
return this.orgName;
|
}
|
|
public String getRoleId() {
|
return this.roleId;
|
}
|
|
public String getRoleName() {
|
return this.roleName;
|
}
|
|
public String getSpecId() {
|
return this.specId;
|
}
|
|
public String getSpecName() {
|
return this.specName;
|
}
|
|
public String getCode() {
|
return this.code;
|
}
|
|
public Integer getSeqNo() {
|
return this.seqNo;
|
}
|
|
public void setId(final String id) {
|
this.id = id;
|
}
|
|
public void setName(final String name) {
|
this.name = name;
|
}
|
|
public void setOrgId(final String orgId) {
|
this.orgId = orgId;
|
}
|
|
public void setOrgName(final String orgName) {
|
this.orgName = orgName;
|
}
|
|
public void setRoleId(final String roleId) {
|
this.roleId = roleId;
|
}
|
|
public void setRoleName(final String roleName) {
|
this.roleName = roleName;
|
}
|
|
public void setSpecId(final String specId) {
|
this.specId = specId;
|
}
|
|
public void setSpecName(final String specName) {
|
this.specName = specName;
|
}
|
|
public void setCode(final String code) {
|
this.code = code;
|
}
|
|
public void setSeqNo(final Integer seqNo) {
|
this.seqNo = seqNo;
|
}
|
|
@Override
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (!(o instanceof PgPos)) {
|
return false;
|
}
|
final PgPos other = (PgPos)o;
|
if (!other.canEqual(this)) {
|
return false;
|
}
|
final Object this$id = this.getId();
|
final Object other$id = other.getId();
|
Label_0065: {
|
if (this$id == null) {
|
if (other$id == null) {
|
break Label_0065;
|
}
|
}
|
else if (this$id.equals(other$id)) {
|
break Label_0065;
|
}
|
return false;
|
}
|
final Object this$name = this.getName();
|
final Object other$name = other.getName();
|
Label_0102: {
|
if (this$name == null) {
|
if (other$name == null) {
|
break Label_0102;
|
}
|
}
|
else if (this$name.equals(other$name)) {
|
break Label_0102;
|
}
|
return false;
|
}
|
final Object this$orgId = this.getOrgId();
|
final Object other$orgId = other.getOrgId();
|
Label_0139: {
|
if (this$orgId == null) {
|
if (other$orgId == null) {
|
break Label_0139;
|
}
|
}
|
else if (this$orgId.equals(other$orgId)) {
|
break Label_0139;
|
}
|
return false;
|
}
|
final Object this$orgName = this.getOrgName();
|
final Object other$orgName = other.getOrgName();
|
Label_0176: {
|
if (this$orgName == null) {
|
if (other$orgName == null) {
|
break Label_0176;
|
}
|
}
|
else if (this$orgName.equals(other$orgName)) {
|
break Label_0176;
|
}
|
return false;
|
}
|
final Object this$roleId = this.getRoleId();
|
final Object other$roleId = other.getRoleId();
|
Label_0213: {
|
if (this$roleId == null) {
|
if (other$roleId == null) {
|
break Label_0213;
|
}
|
}
|
else if (this$roleId.equals(other$roleId)) {
|
break Label_0213;
|
}
|
return false;
|
}
|
final Object this$roleName = this.getRoleName();
|
final Object other$roleName = other.getRoleName();
|
Label_0250: {
|
if (this$roleName == null) {
|
if (other$roleName == null) {
|
break Label_0250;
|
}
|
}
|
else if (this$roleName.equals(other$roleName)) {
|
break Label_0250;
|
}
|
return false;
|
}
|
final Object this$specId = this.getSpecId();
|
final Object other$specId = other.getSpecId();
|
Label_0287: {
|
if (this$specId == null) {
|
if (other$specId == null) {
|
break Label_0287;
|
}
|
}
|
else if (this$specId.equals(other$specId)) {
|
break Label_0287;
|
}
|
return false;
|
}
|
final Object this$specName = this.getSpecName();
|
final Object other$specName = other.getSpecName();
|
Label_0324: {
|
if (this$specName == null) {
|
if (other$specName == null) {
|
break Label_0324;
|
}
|
}
|
else if (this$specName.equals(other$specName)) {
|
break Label_0324;
|
}
|
return false;
|
}
|
final Object this$code = this.getCode();
|
final Object other$code = other.getCode();
|
Label_0361: {
|
if (this$code == null) {
|
if (other$code == null) {
|
break Label_0361;
|
}
|
}
|
else if (this$code.equals(other$code)) {
|
break Label_0361;
|
}
|
return false;
|
}
|
final Object this$seqNo = this.getSeqNo();
|
final Object other$seqNo = other.getSeqNo();
|
if (this$seqNo == null) {
|
if (other$seqNo == null) {
|
return true;
|
}
|
}
|
else if (this$seqNo.equals(other$seqNo)) {
|
return true;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof PgPos;
|
}
|
|
@Override
|
public int hashCode() {
|
final int PRIME = 59;
|
int result = 1;
|
final Object $id = this.getId();
|
result = result * 59 + (($id == null) ? 43 : $id.hashCode());
|
final Object $name = this.getName();
|
result = result * 59 + (($name == null) ? 43 : $name.hashCode());
|
final Object $orgId = this.getOrgId();
|
result = result * 59 + (($orgId == null) ? 43 : $orgId.hashCode());
|
final Object $orgName = this.getOrgName();
|
result = result * 59 + (($orgName == null) ? 43 : $orgName.hashCode());
|
final Object $roleId = this.getRoleId();
|
result = result * 59 + (($roleId == null) ? 43 : $roleId.hashCode());
|
final Object $roleName = this.getRoleName();
|
result = result * 59 + (($roleName == null) ? 43 : $roleName.hashCode());
|
final Object $specId = this.getSpecId();
|
result = result * 59 + (($specId == null) ? 43 : $specId.hashCode());
|
final Object $specName = this.getSpecName();
|
result = result * 59 + (($specName == null) ? 43 : $specName.hashCode());
|
final Object $code = this.getCode();
|
result = result * 59 + (($code == null) ? 43 : $code.hashCode());
|
final Object $seqNo = this.getSeqNo();
|
result = result * 59 + (($seqNo == null) ? 43 : $seqNo.hashCode());
|
return result;
|
}
|
|
@Override
|
public String toString() {
|
return "PgPos(id=" + this.getId() + ", name=" + this.getName() + ", orgId=" + this.getOrgId() + ", orgName=" + this.getOrgName() + ", roleId=" + this.getRoleId() + ", roleName=" + this.getRoleName() + ", specId=" + this.getSpecId() + ", specName=" + this.getSpecName() + ", code=" + this.getCode() + ", seqNo=" + this.getSeqNo() + ")";
|
}
|
}
|