Authority.groovy
上传用户:steveyhw
上传日期:2019-05-13
资源大小:307k
文件大小:0k
源码类别:

PlugIns编程

开发平台:

Java

  1. /**
  2.  * Authority class for Authority
  3.  * @author 
  4.  */
  5. class Authority {
  6. static hasMany=[people:Person]
  7. /** description */
  8. String description
  9. /** ROLE String */
  10. String authority="ROLE_"
  11.     String  powerLevel//权限等级 新加
  12.     static def constraints = {
  13. authority(blank:false)
  14. description(nullable:true)
  15.         powerLevel(maxSize:20,blank:false)
  16.     }
  17. }