UserProfile

class UserProfile extends LongId with Profile with Named

用户在某个App上的配置

trait Named
trait Profile
class LongId
trait LongIdEntity
class NumId[Long]
trait Entity[Long]
trait Serializable
class Object
trait Matchable
class Any

Value members

Inherited methods

override def equals(other: Any): Boolean

比较id,如果任一方id是null,则不相等 由于业务对象被CGlib或者javassist增强的原因,这里只提供一般的基于id的比较,不提供基于Class的比较。
如果在存在继承结构, 请重置equals方法。

比较id,如果任一方id是null,则不相等 由于业务对象被CGlib或者javassist增强的原因,这里只提供一般的基于id的比较,不提供基于Class的比较。
如果在存在继承结构, 请重置equals方法。

Definition Classes
Entity -> Any
Inherited from:
Entity
def getProperty(name: String): Option[String]
Inherited from:
Profile
def getProperty(field: Dimension): Option[String]
Inherited from:
Profile
override def hashCode: Int
See also:

java.lang.Object#hashCode()

Definition Classes
Entity -> Any
Inherited from:
Entity
def matches(other: Profile): Boolean
Inherited from:
Profile
@Transient
def persisted: Boolean

Return true if persisted

Return true if persisted

Inherited from:
Entity
def setProperty(field: Dimension, value: String): Unit
Inherited from:
Profile

Concrete fields

var properties: Map[Dimension, String]
var user: User

Inherited fields

var id: Long
Inherited from:
NumId
var name: String
Inherited from:
Named