This commit is contained in:
Francesco 2023-10-01 14:20:49 +02:00
parent 487e001ff7
commit 6bebfcd58b
4 changed files with 5 additions and 3 deletions

View File

@ -11,7 +11,7 @@
</parent> </parent>
<groupId>tech.ailef</groupId> <groupId>tech.ailef</groupId>
<artifactId>spring-boot-db-admin</artifactId> <artifactId>spring-boot-db-admin</artifactId>
<version>0.1.3-SNAPSHOT</version> <version>0.1.3</version>
<name>spring-boot-db-admin</name> <name>spring-boot-db-admin</name>
<description>Srping Boot Database Admin is an auto-generated CRUD admin panel for Spring Boot apps</description> <description>Srping Boot Database Admin is an auto-generated CRUD admin panel for Spring Boot apps</description>
<properties> <properties>

View File

@ -31,6 +31,9 @@ import tech.ailef.dbadmin.external.annotations.DisplayImage;
import tech.ailef.dbadmin.external.annotations.Filterable; import tech.ailef.dbadmin.external.annotations.Filterable;
import tech.ailef.dbadmin.external.annotations.FilterableType; import tech.ailef.dbadmin.external.annotations.FilterableType;
/**
* Represent a field on the database, generated from an Entity class instance variable.
*/
public class DbField { public class DbField {
/** /**
* The inferred name of this field on the database * The inferred name of this field on the database

View File

@ -34,7 +34,7 @@ import tech.ailef.dbadmin.external.dto.CompareOperator;
import tech.ailef.dbadmin.external.exceptions.DbAdminException; import tech.ailef.dbadmin.external.exceptions.DbAdminException;
/** /**
* The list of supported field types * The enum for supported database field types.
*/ */
public enum DbFieldType { public enum DbFieldType {
INTEGER { INTEGER {

View File

@ -142,7 +142,6 @@ public class LogsSearchRequest implements FilterRequest {
/** /**
* Returns the requested sort order, possibly null * Returns the requested sort order, possibly null
* @param sortOrder
*/ */
public String getSortOrder() { public String getSortOrder() {