package entities
Type Members
- case class AccessEntity(token: String, clientId: Long, accountId: Long, accessRole: Int, 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, accountRole: Int, username: String, passwordHash: String = null, email: String, firstname: String = null, lastname: String = null, mobileNo: String = null, metaJson: String = "{}", avatarUrl: String = null, staffCode: String = null, position: String = null, 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, creatorId: Long = 0, created: DateTime = DateTime.now) extends Product with Serializable
- case class RoleAccountEntity(roleId: Long, accountId: Int, 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(roleId: Long, permissionId: Int, creatorId: Long = 0, created: DateTime = DateTime.now) extends Product with Serializable