sys_attachment_response.go 654 B

1234567891011121314151617181920212223242526272829
  1. package response
  2. import (
  3. "ulink-admin/modules/system/models/model"
  4. )
  5. type SysAttachmentResponse struct {
  6. model.SysAttachment
  7. }
  8. type OmsUploadConfigResponse struct {
  9. Code int `json:"code"`
  10. Msg string `json:"msg"`
  11. Result struct {
  12. CloseQiniu bool `json:"closeQiniu"`
  13. QiniuConfig struct {
  14. Domain string `json:"domain"`
  15. Bucket string `json:"bucket"`
  16. Zone string `json:"zone"`
  17. AccessKey string `json:"accessKey"`
  18. Secret string `json:"secret"`
  19. Disk int `json:"disk"`
  20. } `json:"qiniuConfig"`
  21. } `json:"result"`
  22. }
  23. type QiniuResponse struct {
  24. Label string `json:"label"`
  25. Url string `json:"url"`
  26. }