sys_dict_data.go 432 B

123456789101112131415161718192021
  1. /*
  2. * @desc:字典数据
  3. * @company:云南奇讯科技有限公司
  4. * @Author: yixiaohu<yxh669@qq.com>
  5. * @Date: 2022/3/18 11:56
  6. */
  7. package model
  8. type DictTypeRes struct {
  9. DictName string `json:"name"`
  10. Remark string `json:"remark"`
  11. }
  12. // DictDataRes 字典数据
  13. type DictDataRes struct {
  14. DictValue string `json:"key"`
  15. DictLabel string `json:"value"`
  16. IsDefault int `json:"isDefault"`
  17. Remark string `json:"remark"`
  18. }