package entities
Type Members
- case class AccessEntity(token: String, clientId: Long, accountId: Long, accessRole: Int = AccessRole.Signin.id, accessName: String = "NA", metaJson: String = "{}", creatorId: Long = 0, created: DateTime = DateTime.now) extends Product with Serializable
- case class AccountEntity(id: Long, clientId: Long, isActive: Boolean, isVerify: Boolean, isChangepass: Boolean, accountType: Int = AccountType.Individual.id, accountRole: Int = AccountRole.Owner.id, username: String, passwordHash: String = null, email: String, firstname: String = null, lastname: String = null, mobileNo: String = null, metaJson: String = "{}", creatorId: Long = 0, created: DateTime = DateTime.now) extends Product with Serializable
- case class ClientEntity(id: Long, clientName: String, isActive: Boolean = false, isSingleAccess: Boolean = false, metaJson: String = "{}", creatorId: Long = 0, created: DateTime = DateTime.now) extends Product with Serializable
- case class PermissionEntity(id: Long, methodId: Int, endpoint: String, accessId: Int, metaJson: String = "{}", creatorId: Long = 0, created: DateTime = DateTime.now) extends Product with Serializable
- case class RoleEntity(id: Long, roleName: String, creatorId: Long = 0, created: DateTime = DateTime.now) extends Product with Serializable
- case class RolePermissionEntity(id: Long, roldId: Long, permissionId: Int, metaJson: String = "{}", creatorId: Long = 0, created: DateTime = DateTime.now) extends Product with Serializable