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

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_entity
     6  
     7  // SysOrganization is the golang structure for table sys_organization.
     8  type SysOrganization struct {
     9  	Id          int64  `json:"id"          description:""`
    10  	Name        string `json:"name"        description:"名称"`
    11  	ParentId    int64  `json:"parentId"    description:"父级ID"`
    12  	CascadeDeep int    `json:"cascadeDeep" description:"级联深度"`
    13  	Description string `json:"description" description:"描述"`
    14  }