package persistence
Type Members
- case class Account(id: Int, username: String, passhash: String, created: LocalDateTime = LocalDateTime.now(), lastModified: LocalDateTime = LocalDateTime.now(), inactive: Boolean = false, gm: Boolean = false) extends Product with Serializable
- case class Avatar(id: Int, name: String, accountId: Int, factionId: Int, genderId: Int, headId: Int, voiceId: Int, bep: Long = 0, cep: Long = 0, cosmetics: Option[Int] = None, created: LocalDateTime = LocalDateTime.now(), lastLogin: LocalDateTime = LocalDateTime.now(), lastModified: LocalDateTime = LocalDateTime.now(), deleted: Boolean = false) extends Product with Serializable
- case class Building(localId: Int, zoneId: Int, factionId: Int) extends Product with Serializable
- case class Certification(id: Int, avatarId: Int) extends Product with Serializable
- case class Implant(name: String, avatarId: Int) extends Product with Serializable
- case class Loadout(id: Int, avatarId: Int, loadoutNumber: Int, exosuitId: Int, name: String, items: String) extends Product with Serializable
- case class Locker(id: Int, avatarId: Int, items: String) extends Product with Serializable
- case class Login(id: Int, accountId: Int, loginTime: LocalDateTime = LocalDateTime.now(), ipAddress: String, canonicalHostname: String, hostname: String, port: Int) extends Product with Serializable