- /**
- * Authority class for Authority
- * @author
- */
- class Authority {
- static hasMany=[people:Person]
- /** description */
- String description
- /** ROLE String */
- String authority="ROLE_"
- String powerLevel//权限等级 新加
- static def constraints = {
- authority(blank:false)
- description(nullable:true)
- powerLevel(maxSize:20,blank:false)
- }
- }