sys_dict_data.go 1.1 KB

1234567891011121314151617181920212223242526272829
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-04-16 16:32:52
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // SysDictData is the golang structure of table sys_dict_data for DAO operations like Where/Data.
  10. type SysDictData struct {
  11. g.Meta `orm:"table:sys_dict_data, do:true"`
  12. DictCode interface{} // 字典编码
  13. DictSort interface{} // 字典排序
  14. DictLabel interface{} // 字典标签
  15. DictValue interface{} // 字典键值
  16. DictType interface{} // 字典类型
  17. CssClass interface{} // 样式属性(其他样式扩展)
  18. ListClass interface{} // 表格回显样式
  19. IsDefault interface{} // 是否默认(1是 0否)
  20. Status interface{} // 状态(0正常 1停用)
  21. CreateBy interface{} // 创建者
  22. UpdateBy interface{} // 更新者
  23. Remark interface{} // 备注
  24. CreatedAt *gtime.Time // 创建时间
  25. UpdatedAt *gtime.Time // 修改时间
  26. }