-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* update(OH2-409): Add lock field to medical ward * chore: Update api spec file --------- Co-authored-by: SteveGT96 <[email protected]>
- Loading branch information
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Open Hospital (www.open-hospital.org) | ||
* Copyright © 2006-2023 Informatici Senza Frontiere ([email protected]) | ||
* Copyright © 2006-2024 Informatici Senza Frontiere ([email protected]) | ||
* | ||
* Open Hospital is a free and open source software for healthcare data management. | ||
* | ||
|
@@ -34,6 +34,9 @@ public class MedicalWardDTO { | |
@Schema(description = "The out-quantity", example = "89") | ||
private float out_quantity; | ||
|
||
@Schema(description = "Lock", example = "0") | ||
private int lock; | ||
|
||
public MedicalWardDTO() { | ||
} | ||
|
||
|
@@ -66,4 +69,11 @@ public void setIn_quantity(float in_quantity) { | |
public void setOut_quantity(float out_quantity) { | ||
this.out_quantity = out_quantity; | ||
} | ||
|
||
public int getLock() { | ||
return lock; | ||
} | ||
public void setLock(int lock) { | ||
this.lock = lock; | ||
} | ||
} |