• haoyanbin's avatar
    1 · 9bf9e037
    haoyanbin authored
    9bf9e037
read.go 346 Bytes
package response

type ReadContentsRes struct {
	Id            int    `json:"id"` // 主键ID
	BookId        int    `json:"book_id"`
	ReadCatalogId int    `json:"read_catalog_id"`
	Content       string `json:"content"`
	CatalogName   string `json:"catalog_name"`
	BookName      string `json:"book_name"`
	Keywords      string `json:"keywords"`
}