1234567891011121314151617181920212223242526 |
- package util
- type UserMoneyRecord struct {
- Id string `json:"id"`
- UserId string `json:"userId"`
- DocName string `json:"before"`
- DocFileType int `json:"docFileType"`
- DocFileSuffix string `json:"docFileSuffix"`
- DocFileSize int `json:"docFileSize"`
- DocPageSize int `json:"docPageSize"`
- DocTags string `json:"docTags"`
- DocClassLevelOne string `json:"docClassLevelOne"`
- DocClassLevelTwo string `json:"docClassLevelTwo"`
- UploadDate string `json:"uploadDate"`
- IsDelete int `json:"isDelete"`
- OssDocId string `json:"ossDocId"`
- OssDocUrl string `json:"ossDocUrl"`
- Md5 string `json:"md5"`
- OssPdfId string `json:"ossPdfId"`
- OssPdfUrl string `json:"ossPdfUrl"`
- OssTxtId string `json:"ossTxtId"`
- OssTxtUrl string `json:"ossTxtUrl"`
- Price int `json:"price"`
- DownOrUp int `json:"downOrUp"`
- DocSummary string `json:"docSummary"`
- }
|