1234567891011121314151617181920212223242526272829 |
- // ==========================================================================
- // GFast自动生成model代码,无需手动修改,重新生成会自动覆盖.
- // 生成日期:2023-12-05 01:20:48
- // 生成路径: gfast/app/gen/model/jyapi_group.go
- // 生成人:ren
- // ==========================================================================
- package model
- import (
- "github.com/gogf/gf/v2/os/gtime"
- "github.com/gogf/gf/v2/util/gmeta"
- )
- // JyapiGroup is the golang structure for table jyapi_group.
- type JyapiGroup struct {
- gmeta.Meta `orm:"table:jyapi_group"`
- Id int `orm:"id,primary" json:"id"` // id
- Name string `orm:"name" json:"name"` // 名称
- Pid int `orm:"pid" json:"pid"` // 父级
- Path string `orm:"path" json:"path"` // 分组路径
- Igroup int `orm:"igroup" json:"igroup"` // 类型 1接口 2函数
- CreatedAt *gtime.Time `orm:"created_at" json:"createdAt"` // 创建时间
- UpdatedAt *gtime.Time `orm:"updated_at" json:"updatedAt"` // 更新时间
- DeletedAt *gtime.Time `orm:"deleted_at" json:"deletedAt"` // 删除时间
- Status int `orm:"status" json:"status"` // 状态
- CreatedBy int64 `orm:"created_by" json:"createdBy"` // 创建人
- UpdatedBy int64 `orm:"updated_by" json:"updatedBy"` // 更新人
- }
|