working on transformation of legacy notes tables

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-08-12 23:41:56 +02:00
parent 09dd21eee8
commit 1df7a2bd3c
11 changed files with 163 additions and 48 deletions

View File

@@ -167,6 +167,7 @@ public class Constants {
public static final String UMBRELLA = "Umbrella";
public static final String UNIT = "unit";
public static final String UNIT_PRICE = "unit_price";
public static final String URI = "uri";
public static final String URL = "url";
public static final String USER = "user";
public static final String USER_ID = "user_id";

View File

@@ -6,9 +6,9 @@ import de.srsoftware.umbrella.core.model.Note;
import java.util.Map;
public interface NoteService {
void deleteEntity(String task, long taskId);
void deleteEntity(String task, String taskId);
Map<Long,Note> getNotes(String module, long entityId) throws UmbrellaException;
Map<Long,Note> getNotes(String module, String entityId) throws UmbrellaException;
Note save(Note note);
}