github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_do/sys_organization.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  )
    10  
    11  // SysOrganization is the golang structure of table sys_organization for DAO operations like Where/Data.
    12  type SysOrganization struct {
    13  	g.Meta      `orm:"table:sys_organization, do:true"`
    14  	Id          interface{} //
    15  	Name        interface{} // 名称
    16  	ParentId    interface{} // 父级ID
    17  	CascadeDeep interface{} // 级联深度
    18  	Description interface{} // 描述
    19  }