Skip to content
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.

Commit

Permalink
Add formSubmissionId
Browse files Browse the repository at this point in the history
  • Loading branch information
ekigamba committed Mar 21, 2018
1 parent 3d6999c commit 55a910f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions opensrp-core/src/main/java/org/opensrp/domain/Order.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class Order extends BaseDataObject {

@JsonProperty
private Long clientIdentifier;
private String formSubmissionId;

@JsonProperty
private String locationId;
Expand All @@ -25,6 +25,14 @@ public class Order extends BaseDataObject {
@JsonProperty
private Map<String, Integer> stockOnHand;

public String getFormSubmissionId() {
return formSubmissionId;
}

public void setFormSubmissionId(String formSubmissionId) {
this.formSubmissionId = formSubmissionId;
}

public Map<String, Integer> getStockOnHand() {
return stockOnHand;
}
Expand All @@ -41,14 +49,6 @@ public void setDateCreatedByClient(long dateCreatedByClient) {
this.dateCreatedByClient = dateCreatedByClient;
}

public Long getClientIdentifier() {
return clientIdentifier;
}

public void setClientIdentifier(Long clientIdentifier) {
this.clientIdentifier = clientIdentifier;
}

public String getType() {
return type;
}
Expand Down

0 comments on commit 55a910f

Please sign in to comment.