sys_dict_data.go 1.9 KB

12345678910111213141516171819202122232425262728293031
  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 int `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 string `orm:"is_default" json:"isDefault"` // 是否默认(10是20否)
  18. Status string `orm:"status" json:"status"` // 状态(10正常20停用)
  19. Sort int `orm:"sort" json:"sort"` // 显示顺序
  20. Remark string `orm:"remark" json:"remark"` // 备注
  21. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
  22. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  23. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  24. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
  25. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  26. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  27. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  28. }