sys_dict_data.go 1.6 KB

12345678910111213141516171819202122232425262728
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. )
  8. // SysDictData is the golang structure for table sys_dict_data.
  9. type SysDictData struct {
  10. DictCode int64 `orm:"dict_code,primary" json:"dictCode"` // 字典编码
  11. DictSort int `orm:"dict_sort" json:"dictSort"` // 字典排序
  12. DictLabel string `orm:"dict_label" json:"dictLabel"` // 字典标签
  13. DictValue string `orm:"dict_value" json:"dictValue"` // 字典键值
  14. DictType string `orm:"dict_type" json:"dictType"` // 字典类型
  15. CssClass string `orm:"css_class" json:"cssClass"` // 样式属性(其他样式扩展)
  16. ListClass string `orm:"list_class" json:"listClass"` // 表格回显样式
  17. IsDefault int `orm:"is_default" json:"isDefault"` // 是否默认(1是 0否)
  18. Status int `orm:"status" json:"status"` // 状态(0正常 1停用)
  19. CreateBy uint64 `orm:"create_by" json:"createBy"` // 创建者
  20. UpdateBy uint64 `orm:"update_by" json:"updateBy"` // 更新者
  21. Remark string `orm:"remark" json:"remark"` // 备注
  22. CreatedAt *gtime.Time `orm:"created_at" json:"createdAt"` // 创建时间
  23. UpdatedAt *gtime.Time `orm:"updated_at" json:"updatedAt"` // 修改时间
  24. DeletedAt *gtime.Time `orm:"deleted_at" json:"deletedAt"` // 删除时间
  25. }