implemented tags for items

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-10-16 23:04:52 +02:00
parent 554b0459fa
commit 8d40c8c9f1
5 changed files with 63 additions and 19 deletions

View File

@@ -36,6 +36,10 @@ public class DbLocation extends Location {
return new DbLocation(rs.getLong(ID), OwnerRef.of(rs), rs.getLong(PARENT_LOCATION_ID), rs.getString(NAME),rs.getString(DESCRIPTION));
}
public Owner owner(){
return owner;
}
public Long parent(){
return parentLocationId;
}