Interface WingsJournalTable
-
- All Implemented Interfaces:
-
pro.fessional.wings.faceless.database.jooq.WingsAliasTable
public interface WingsJournalTable<T> implements WingsAliasTable<T>
- Since:
2020-08-12
trydofor
-
-
Method Summary
Modifier and Type Method Description Map<Field<out Object>, out Object>markDelete(JournalService.Journal commit)ConditiongetOnlyDied()ConditiongetOnlyLive()ConditiononlyDied(Condition cond)Combine other condition with `and onlyDiedData` ConditiononlyLive(Condition cond)Combine other condition with `and onlyLiveData` -
-
Method Detail
-
markDelete
@NotNull() Map<Field<out Object>, out Object> markDelete(JournalService.Journal commit)
-
getOnlyDied
@NotNull() Condition getOnlyDied()
-
getOnlyLive
@NotNull() Condition getOnlyLive()
-
onlyDied
@NotNull() Condition onlyDied(Condition cond)
Combine other condition with `and onlyDiedData`
- Parameters:
cond- other condition- Returns:
Condition
-
onlyLive
@NotNull() Condition onlyLive(Condition cond)
Combine other condition with `and onlyLiveData`
- Parameters:
cond- other condition- Returns:
Condition
-
-
-
-