[F] Fix mai event id

This commit is contained in:
Azalea
2024-03-26 22:27:12 -04:00
parent 5ea2615b93
commit f314b3982e
3 changed files with 8 additions and 3 deletions

View File

@@ -111,7 +111,7 @@ open class BaseEntity(
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@JsonIgnore
var id: Long = 0
open var id: Long = 0
) : JavaSerializable {
override fun toString() = JACKSON.writeValueAsString(this)
}