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

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_entity
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/os/gtime"
     9  )
    10  
    11  // SysIndustry is the golang structure for table sys_industry.
    12  type SysIndustry struct {
    13  	Id           int64       `json:"id"           description:"ID"`
    14  	CategoryId   int64       `json:"categoryId"   description:"行业ID"`
    15  	CategoryName string      `json:"categoryName" description:"行业名称"`
    16  	CategoryDesc string      `json:"categoryDesc" description:"行业描述"`
    17  	Rate         int         `json:"rate"         description:"费率"`
    18  	ParentId     int64       `json:"parentId"     description:"父级ID"`
    19  	Sort         int         `json:"sort"         description:"排序"`
    20  	State        int         `json:"state"        description:"状态:0隐藏,1显示"`
    21  	CreatedAt    *gtime.Time `json:"createdAt"    description:""`
    22  	UpdatedAt    *gtime.Time `json:"updatedAt"    description:""`
    23  	DeletedAt    *gtime.Time `json:"deletedAt"    description:""`
    24  }