This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Set yourself up: | |
1) Download Scala - http://www.scala-lang.org/downloads | |
2) Unzip/untar to your favourite location and put the bin subdir in your `PATH` environment variable | |
3) Start a Scala REPL by running `scala`. You should see the prompt: | |
scala> | |
This is the so called REPL (Read-Eval-Print Loop). You may type any Scala |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 账号实体 | |
*/ | |
@Entity("Account") | |
case class EZ_Account() extends SecureModel with StatusModel { | |
@Unique | |
@Require | |
@Label("Code") // organization_code@login_id | |
@BeanProperty var code: String = _ |