stdlib.go 1010 B

1234567891011121314151617181920212223242526
  1. package util
  2. type UserMoneyRecord struct {
  3. Id string `json:"id"`
  4. UserId string `json:"userId"`
  5. DocName string `json:"before"`
  6. DocFileType int `json:"docFileType"`
  7. DocFileSuffix string `json:"docFileSuffix"`
  8. DocFileSize int `json:"docFileSize"`
  9. DocPageSize int `json:"docPageSize"`
  10. DocTags string `json:"docTags"`
  11. DocClassLevelOne string `json:"docClassLevelOne"`
  12. DocClassLevelTwo string `json:"docClassLevelTwo"`
  13. UploadDate string `json:"uploadDate"`
  14. IsDelete int `json:"isDelete"`
  15. OssDocId string `json:"ossDocId"`
  16. OssDocUrl string `json:"ossDocUrl"`
  17. Md5 string `json:"md5"`
  18. OssPdfId string `json:"ossPdfId"`
  19. OssPdfUrl string `json:"ossPdfUrl"`
  20. OssTxtId string `json:"ossTxtId"`
  21. OssTxtUrl string `json:"ossTxtUrl"`
  22. Price int `json:"price"`
  23. DownOrUp int `json:"downOrUp"`
  24. DocSummary string `json:"docSummary"`
  25. }