Adding QFieldType.LONG

This commit is contained in:
2023-12-22 18:59:08 -06:00
parent a8c30b1bed
commit 455ab69104
13 changed files with 309 additions and 7 deletions

View File

@ -415,6 +415,7 @@ public class QCommandBuilder
{
case STRING, TEXT, HTML, PASSWORD -> String.class;
case INTEGER -> Integer.class;
case LONG -> Long.class;
case DECIMAL -> BigDecimal.class;
case DATE -> LocalDate.class;
case TIME -> LocalTime.class;