thirdpart.go 575 B

1234567891011121314151617181920
  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. }