fixs and move files
This commit is contained in:
14
src/main/kotlin/fr/dcproject/entity/User.kt
Normal file
14
src/main/kotlin/fr/dcproject/entity/User.kt
Normal file
@@ -0,0 +1,14 @@
|
||||
package fr.dcproject.entity
|
||||
|
||||
import fr.postgresjson.entity.*
|
||||
import org.joda.time.DateTime
|
||||
import java.util.*
|
||||
|
||||
class User(
|
||||
id: UUID? = UUID.randomUUID(),
|
||||
var username: String?,
|
||||
var blockedAt: DateTime? = null,
|
||||
var plainPassword: String?
|
||||
) : UuidEntity(id),
|
||||
EntityCreatedAt by EntityCreatedAtImp(),
|
||||
EntityUpdatedAt by EntityUpdatedAtImp()
|
||||
Reference in New Issue
Block a user