Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package gov.va.med.ars.model.response;
public class Lookup275ClaimAttachmentResponse {
Long attachId;
String patientCtrNumber;
String reportType;
String medicalRecordNumber;
String patientName;
String patientId;
String providerName;
String providerNpi;
String claimId;
String serviceDate;
String attachType;
String status;
String payerClaimNumber;
String attachCtrNumber;
public Lookup275ClaimAttachmentResponse() {
super();
}
/**
*
* @param attachId
* @param patientCtrNumber
* @param reportType
* @param medicalRecordNumber
* @param patientName
* @param patientId
* @param providerName
* @param providerNpi
* @param claimId
* @param serviceDate
* @param attachType
* @param status
* @param payerClaimNumber
* @param attachCtrNumber
*/
public Lookup275ClaimAttachmentResponse(Long attachId, String patientCtrNumber, String reportType,
String medicalRecordNumber, String patientName, String patientId, String providerName, String providerNpi,
String claimId, String serviceDate, String attachType, String status, String payerClaimNumber,
String attachCtrNumber) {
super();
this.attachId = attachId;
this.patientCtrNumber = patientCtrNumber;
this.reportType = reportType;
this.medicalRecordNumber = medicalRecordNumber;
this.patientName = patientName;
this.patientId = patientId;
this.providerName = providerName;
this.providerNpi = providerNpi;
this.claimId = claimId;
this.serviceDate = serviceDate;
this.attachType = attachType;
this.status = status;
this.payerClaimNumber = payerClaimNumber;
this.attachCtrNumber = attachCtrNumber;
}
/**
*
* @return attachId
*/
public Long getAttachId() {
return attachId;
}
/**
*
* @param attachId
*/
public void setAttachId(Long attachId) {
this.attachId = attachId;
}
/**
*
* @return patientCtrNumber
*/
public String getPatientCtrNumber() {
return patientCtrNumber;
}
/**
*
* @param patientControlNumber
*/
public void setPatientCtrNumber(String patientCtrNumber) {
this.patientCtrNumber = patientCtrNumber;
}
/**
*
* @return reportType
*/
public String getReportType() {
return reportType;
}
/**
*
* @param reportType
*/
public void setReportType(String reportType) {
this.reportType = reportType;
}
/**
*
* @return medicalRecordNumber
*/
public String getMedicalRecordNumber() {
return medicalRecordNumber;
}
/**
*
* @param medicalRecordNumber
*/
public void setMedicalRecordNumber(String medicalRecordNumber) {
this.medicalRecordNumber = medicalRecordNumber;
}
/**
*
* @return patientName
*/
public String getPatientName() {
return patientName;
}
/**
*
* @param patientName
*/
public void setPatientName(String patientName) {
this.patientName = patientName;
}
/**
*
* @return patientId
*/
public String getPatientId() {
return patientId;
}
/**
*
* @param patientId
*/
public void setPatientId(String patientId) {
this.patientId = patientId;
}
/**
*
* @return providerName
*/
public String getProviderName() {
return providerName;
}
/**
*
* @param providerName
*/
public void setProviderName(String providerName) {
this.providerName = providerName;
}
/**
*
* @return providerNpi
*/
public String getProviderNpi() {
return providerNpi;
}
/**
*
* @param providerNpi
*/
public void setProviderNpi(String providerNpi) {
this.providerNpi = providerNpi;
}
/**
*
* @return claimId
*/
public String getClaimId() {
return claimId;
}
/**
*
* @param string
*/
public void setClaimId(String claimId) {
this.claimId = claimId;
}
/**
*
* @return serviceDate
*/
public String getServiceDate() {
return serviceDate;
}
/**
*
* @param serviceDate
*/
public void setServiceDate(String serviceDate) {
this.serviceDate = serviceDate;
}
/**
*
* @return attachType
*/
public String getAttachType() {
return attachType;
}
/**
*
* @param attachType
*/
public void setAttachType(String attachType) {
this.attachType = attachType;
}
/**
*
* @return status
*/
public String getStatus() {
return status;
}
/**
*
* @param status
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* @return payerClaimNumber
*/
public String getPayerClaimNumber() {
return payerClaimNumber;
}
/**
*
* @param payerClaimNumber
*/
public void setPayerClaimNumber(String payerClaimNumber) {
this.payerClaimNumber = payerClaimNumber;
}
/**
*
* @return attachCtrNumber
*/
public String getAttachCtrNumber() {
return attachCtrNumber;
}
/**
*
* @param attachCtrNumber
*/
public void setAttachCtrNumber(String attachCtrNumber) {
this.attachCtrNumber = attachCtrNumber;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((attachCtrNumber == null) ? 0 : attachCtrNumber.hashCode());
result = prime * result + ((attachId == null) ? 0 : attachId.hashCode());
result = prime * result + ((attachType == null) ? 0 : attachType.hashCode());
result = prime * result + ((claimId == null) ? 0 : claimId.hashCode());
result = prime * result + ((medicalRecordNumber == null) ? 0 : medicalRecordNumber.hashCode());
result = prime * result + ((patientCtrNumber == null) ? 0 : patientCtrNumber.hashCode());
result = prime * result + ((patientId == null) ? 0 : patientId.hashCode());
result = prime * result + ((patientName == null) ? 0 : patientName.hashCode());
result = prime * result + ((payerClaimNumber == null) ? 0 : payerClaimNumber.hashCode());
result = prime * result + ((providerName == null) ? 0 : providerName.hashCode());
result = prime * result + ((providerNpi == null) ? 0 : providerNpi.hashCode());
result = prime * result + ((reportType == null) ? 0 : reportType.hashCode());
result = prime * result + ((serviceDate == null) ? 0 : serviceDate.hashCode());
result = prime * result + ((status == null) ? 0 : status.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Lookup275ClaimAttachmentResponse other = (Lookup275ClaimAttachmentResponse) obj;
if (attachCtrNumber == null) {
if (other.attachCtrNumber != null)
return false;
} else if (!attachCtrNumber.equals(other.attachCtrNumber))
return false;
if (attachId == null) {
if (other.attachId != null)
return false;
} else if (!attachId.equals(other.attachId))
return false;
if (attachType == null) {
if (other.attachType != null)
return false;
} else if (!attachType.equals(other.attachType))
return false;
if (claimId == null) {
if (other.claimId != null)
return false;
} else if (!claimId.equals(other.claimId))
return false;
if (medicalRecordNumber == null) {
if (other.medicalRecordNumber != null)
return false;
} else if (!medicalRecordNumber.equals(other.medicalRecordNumber))
return false;
if (patientCtrNumber == null) {
if (other.patientCtrNumber != null)
return false;
} else if (!patientCtrNumber.equals(other.patientCtrNumber))
return false;
if (patientId == null) {
if (other.patientId != null)
return false;
} else if (!patientId.equals(other.patientId))
return false;
if (patientName == null) {
if (other.patientName != null)
return false;
} else if (!patientName.equals(other.patientName))
return false;
if (payerClaimNumber == null) {
if (other.payerClaimNumber != null)
return false;
} else if (!payerClaimNumber.equals(other.payerClaimNumber))
return false;
if (providerName == null) {
if (other.providerName != null)
return false;
} else if (!providerName.equals(other.providerName))
return false;
if (providerNpi == null) {
if (other.providerNpi != null)
return false;
} else if (!providerNpi.equals(other.providerNpi))
return false;
if (reportType == null) {
if (other.reportType != null)
return false;
} else if (!reportType.equals(other.reportType))
return false;
if (serviceDate == null) {
if (other.serviceDate != null)
return false;
} else if (!serviceDate.equals(other.serviceDate))
return false;
if (status == null) {
if (other.status != null)
return false;
} else if (!status.equals(other.status))
return false;
return true;
}
@Override
public String toString() {
return "Ars275LookupResponse [attachId=" + attachId + ", patientControlNumber=" + patientCtrNumber
+ ", reportType=" + reportType + ", medicalRecordNumber=" + medicalRecordNumber + ", patientName="
+ patientName + ", patientId=" + patientId + ", providerName=" + providerName + ", providerNpi="
+ providerNpi + ", claimId=" + claimId + ", serviceDate=" + serviceDate + ", attachType=" + attachType
+ ", status=" + status + ", payerClaimNumber=" + payerClaimNumber + ", attachCtrNumber="
+ attachCtrNumber + "]";
}
}