github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_do/sys_permission.go (about)

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_do
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/frame/g"
     9  	"github.com/gogf/gf/v2/os/gtime"
    10  )
    11  
    12  // SysPermission is the golang structure of table sys_permission for DAO operations like Where/Data.
    13  type SysPermission struct {
    14  	g.Meta      `orm:"table:sys_permission, do:true"`
    15  	Id          interface{} // ID
    16  	ParentId    interface{} // 父级ID
    17  	Name        interface{} // 名称
    18  	Description interface{} // 描述
    19  	Identifier  interface{} // 标识符
    20  	Type        interface{} // 类型:1api,2menu
    21  	MatchMode   interface{} // 匹配模式:ID:0,标识符:1
    22  	IsShow      interface{} // 是否显示:0不显示 1显示
    23  	Sort        interface{} // 排序
    24  	CreatedAt   *gtime.Time //
    25  	UpdatedAt   *gtime.Time //
    26  }