Skip to content

Commit

Permalink
BAH-3448 | Add. Accession number field in Order class (#219)
Browse files Browse the repository at this point in the history
* BAH-3448 | Add. Accession number field in Order class | [Riya/Sweety]

* BAH-3448 | Add. Since annotation in public methods of accessionNumber | [Riya/Sweety]
  • Loading branch information
riyaTw committed Jan 8, 2024
1 parent 89b2b9b commit aa45884
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,7 @@ public static class Order {
private String instructions;
private String uuid;
private String orderType;
private String accessionNumber;
private OrderGroup orderGroup;
private Date dateCreated;
private Date dateChanged;
Expand All @@ -655,6 +656,20 @@ public Date getAutoExpireDate() {
return autoExpireDate;
}

/**
* @since 1.35.0
*/
public String getAccessionNumber() {
return accessionNumber;
}

/**
* @since 1.35.0
*/
public void setAccessionNumber(String accessionNumber) {
this.accessionNumber = accessionNumber;
}

public void setAutoExpireDate(Date autoExpireDate) {
this.autoExpireDate = autoExpireDate;
}
Expand Down

0 comments on commit aa45884

Please sign in to comment.