github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_do/sys_industry.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  // SysIndustry is the golang structure of table sys_industry for DAO operations like Where/Data.
    13  type SysIndustry struct {
    14  	g.Meta       `orm:"table:sys_industry, do:true"`
    15  	Id           interface{} // ID
    16  	CategoryId   interface{} // 行业ID
    17  	CategoryName interface{} // 行业名称
    18  	CategoryDesc interface{} // 行业描述
    19  	Rate         interface{} // 费率
    20  	ParentId     interface{} // 父级ID
    21  	Sort         interface{} // 排序
    22  	State        interface{} // 状态:0隐藏,1显示
    23  	CreatedAt    *gtime.Time //
    24  	UpdatedAt    *gtime.Time //
    25  	DeletedAt    *gtime.Time //
    26  }