thirdpart.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Copyright 2019 getensh.com. All rights reserved.
  2. // Use of this source code is governed by getensh.com.
  3. package apis
  4. type CdbdData struct {
  5. Id int64 `json:"id" description:"id"`
  6. PlateNo string `json:"plate_no" description:"车牌号"`
  7. IdCard string `json:"id_card"`
  8. Authorization string `json:"authorization"`
  9. Name string `json:"name"`
  10. Data string `json:"data" description:"第三方API返回的数据"`
  11. Timestamp int64 `json:"timestamp" description:"时间戳"`
  12. }
  13. func (b *CdbdData) TableName() string {
  14. return "t_gd_cdbd_data"
  15. }
  16. type DybdX001Data struct{
  17. Id int64 `json:"id" description:"id"`
  18. DegreeId string `json:"degree_id"`
  19. Name string `json:"name"`
  20. Data string `json:"data"`
  21. Timestamp int64 `json:"timestamp"`
  22. }
  23. func (b *DybdX001Data) TableName() string {
  24. return "t_gd_dybd_x001_data"
  25. }
  26. type DybdX002Data struct{
  27. Id int64 `json:"id" description:"id"`
  28. EducationId string `json:"education_id"`
  29. Name string `json:"name"`
  30. Data string `json:"data"`
  31. Timestamp int64 `json:"timestamp"`
  32. }
  33. func (b *DybdX002Data) TableName() string {
  34. return "t_gd_dybd_x002_data"
  35. }