sys_role.go 881 B

1234567891011121314151617181920212223
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // SysRole is the golang structure of table sys_role for DAO operations like Where/Data.
  10. type SysRole struct {
  11. g.Meta `orm:"table:sys_role, do:true"`
  12. Id interface{} //
  13. Status interface{} // 状态;0:禁用;1:正常
  14. ListOrder interface{} // 排序
  15. Name interface{} // 角色名称
  16. Remark interface{} // 备注
  17. DataScope interface{} // 数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)
  18. CreatedAt *gtime.Time // 创建时间
  19. UpdatedAt *gtime.Time // 更新时间
  20. }