jyapi_group.go 1.4 KB

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