Simplest Entity
abstract class SimplestEntity<I : Serializable>(var id: I? = null, var version: Int? = null, var createdAt: Instant? = null, var updatedAt: Instant? = null, var deletedAt: Instant? = null) : CRUDEntity<I> , CRUDModel<I> , CRUDCreateModel, CRUDUpdateModel, CRUDDTO<I> , CRUDCreateDTO, CRUDUpdateDTO(source)
Simpler variant of CRUDEntity which is also a CRUDModel, a CRUDCreateModel, a CRUDUpdateModel, a CRUDDTO, a CRUDCreateDTO and a CRUDUpdateDTO
Parameters
I
Id type of the data
Constructors
Link copied to clipboard
fun <I : Serializable> SimplestEntity(id: I? = null, version: Int? = null, createdAt: Instant? = null, updatedAt: Instant? = null, deletedAt: Instant? = null)